summaryrefslogtreecommitdiffstats
path: root/player/playloop.c
diff options
context:
space:
mode:
authorDudemanguy <random342@airmail.cc>2023-09-19 22:56:17 -0500
committerDudemanguy <random342@airmail.cc>2023-09-21 16:06:29 +0000
commitfb46666395d4b2693365db69d34e6080cfbf06dc (patch)
tree59cd068102e3292a8872ea1ea0a8dc9af6a66df6 /player/playloop.c
parent1b68c5d22f7495f23ea1dce20852390c26907c5a (diff)
downloadmpv-fb46666395d4b2693365db69d34e6080cfbf06dc.tar.bz2
mpv-fb46666395d4b2693365db69d34e6080cfbf06dc.tar.xz
options: remove deprecated --record-file option
No wonder wm4 wanted to get rid of this. This option requires touching a bunch of crap in the core player code. --stream-record works perfectly fine and is a lot nicer so there's no need for this to exist anymore.
Diffstat (limited to 'player/playloop.c')
-rw-r--r--player/playloop.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/player/playloop.c b/player/playloop.c
index e492e15724..7a1c13f4ad 100644
--- a/player/playloop.c
+++ b/player/playloop.c
@@ -32,7 +32,6 @@
#include "common/encode.h"
#include "common/msg.h"
#include "common/playlist.h"
-#include "common/recorder.h"
#include "common/stats.h"
#include "demux/demux.h"
#include "filters/f_decoder_wrapper.h"
@@ -373,8 +372,6 @@ static void mp_seek(MPContext *mpctx, struct seek_params seek)
clear_audio_output_buffers(mpctx);
reset_playback_state(mpctx);
- if (mpctx->recorder)
- mp_recorder_mark_discontinuity(mpctx->recorder);
demux_block_reading(mpctx->demuxer, false);
for (int t = 0; t < mpctx->num_tracks; t++) {