From 5ad4f0d473f41360065bdf272d245c8c6575d12a Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Sun, 1 Mar 2009 17:02:21 +0000 Subject: Simplify the logic for the subtitle stream selection. Originally committed as revision 17692 to svn://svn.ffmpeg.org/ffmpeg/trunk --- ffplay.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ffplay.c b/ffplay.c index 6d9caf2224..b4927c6744 100644 --- a/ffplay.c +++ b/ffplay.c @@ -1982,8 +1982,7 @@ static int decode_thread(void *arg) video_index = i; break; case CODEC_TYPE_SUBTITLE: - if (wanted_subtitle_stream >= 0 && !video_disable && - (subtitle_index < 0 || wanted_subtitle_stream-- >= 0)) + if (wanted_subtitle_stream-- >= 0 && !video_disable) subtitle_index = i; break; default: -- cgit v1.2.3