From f34e1a0deea45e5ed200f1d8daa36ca92d899e92 Mon Sep 17 00:00:00 2001 From: wm4 Date: Mon, 19 Jun 2017 17:54:02 +0200 Subject: demux: replace custom return codes with CONTROL_ ones This is more uniform, and potentially gets rid of some past copyrights. It might be that this subtly changes caching behavior (it seems before this, it synced to the demuxer if the length was unknown, which is not what we want.) --- player/command.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'player') diff --git a/player/command.c b/player/command.c index 742b1fa91a..3df1b3fcd1 100644 --- a/player/command.c +++ b/player/command.c @@ -2370,7 +2370,7 @@ static int mp_property_program(void *ctx, struct m_property *prop, int action, void *arg) { MPContext *mpctx = ctx; - demux_program_t prog; + demux_program_t prog = {0}; struct demuxer *demuxer = mpctx->demuxer; if (!demuxer || !mpctx->playback_initialized) @@ -2384,7 +2384,7 @@ static int mp_property_program(void *ctx, struct m_property *prop, else prog.progid = -1; if (demux_control(demuxer, DEMUXER_CTRL_IDENTIFY_PROGRAM, &prog) == - DEMUXER_CTRL_NOTIMPL) + CONTROL_UNKNOWN) return M_PROPERTY_ERROR; if (prog.aid < 0 && prog.vid < 0) { -- cgit v1.2.3