summaryrefslogtreecommitdiffstats
path: root/player/core.h
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/core.h
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/core.h')
-rw-r--r--player/core.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/player/core.h b/player/core.h
index 0f63f13474..c8c6ee850b 100644
--- a/player/core.h
+++ b/player/core.h
@@ -145,9 +145,6 @@ struct track {
struct vo_chain *vo_c;
struct ao_chain *ao_c;
struct mp_pin *sink;
-
- // For stream recording (remuxing mode).
- struct mp_recorder_sink *remux_sink;
};
// Summarizes video filtering and output.
@@ -425,8 +422,6 @@ typedef struct MPContext {
// playback rate. Used to avoid showing it multiple times.
bool drop_message_shown;
- struct mp_recorder *recorder;
-
struct screenshot_ctx *screenshot_ctx;
struct command_ctx *command_ctx;
struct encode_lavc_context *encode_lavc_ctx;
@@ -539,9 +534,6 @@ void autoload_external_files(struct MPContext *mpctx, struct mp_cancel *cancel);
struct track *select_default_track(struct MPContext *mpctx, int order,
enum stream_type type);
void prefetch_next(struct MPContext *mpctx);
-void close_recorder(struct MPContext *mpctx);
-void close_recorder_and_error(struct MPContext *mpctx);
-void open_recorder(struct MPContext *mpctx, bool on_init);
void update_lavfi_complex(struct MPContext *mpctx);
// main.c