OSDN Git Service

Just ignore streams with unknown codec_type instead of exiting
authorDavid Conrad <lessen42@gmail.com>
Fri, 5 Mar 2010 00:22:37 +0000 (00:22 +0000)
committerDavid Conrad <lessen42@gmail.com>
Fri, 5 Mar 2010 00:22:37 +0000 (00:22 +0000)
Originally committed as revision 22213 to svn://svn.ffmpeg.org/ffmpeg/trunk

ffplay.c

index b6b185e..36bbf15 100644 (file)
--- a/ffplay.c
+++ b/ffplay.c
@@ -2051,7 +2051,7 @@ static int decode_thread(void *arg)
         AVCodecContext *avctx = st->codec;
         ic->streams[i]->discard = AVDISCARD_ALL;
         if(avctx->codec_type >= (unsigned)CODEC_TYPE_NB)
-            exit(1);
+            continue;
         if(st_count[avctx->codec_type]++ != wanted_stream[avctx->codec_type] && wanted_stream[avctx->codec_type] >= 0)
             continue;