From 47ec404a52ae090f864e3c1669435fae36b4380b Mon Sep 17 00:00:00 2001 From: wm4 Date: Tue, 2 Dec 2014 19:28:52 +0100 Subject: player: don't signal an error if --stream-dump is used The player thinks an error happened because no audio or video was played after finishing the file, but this obviously makes no sense with stream dumping. (error_playing follows the client API convention that negative values are errors.) --- player/loadfile.c | 1 + 1 file changed, 1 insertion(+) (limited to 'player') diff --git a/player/loadfile.c b/player/loadfile.c index 3c001ddeaa..aa457b3d08 100644 --- a/player/loadfile.c +++ b/player/loadfile.c @@ -967,6 +967,7 @@ static void play_current_file(struct MPContext *mpctx) if (opts->stream_dump && opts->stream_dump[0]) { stream_dump(mpctx); + mpctx->error_playing = 1; goto terminate_playback; } -- cgit v1.2.3