summaryrefslogtreecommitdiff
path: root/ffmpeg.c
diff options
context:
space:
mode:
authorMike Brown <mikeb@vibephone.com>2005-08-10 23:41:20 +0000
committerMichael Niedermayer <michaelni@gmx.at>2005-08-10 23:41:20 +0000
commitae38261ee8e969a776d2952fbe32a6023036f51f (patch)
tree24576874116628d42c9bf02d7a20427689a2134b /ffmpeg.c
parent6870a440cee9c142c5d99b44e6c93348b901c4d0 (diff)
changes to ignore command media embedded in MS WMV files patch by ("Brown, Mike": mikeb, vibephone com)
Originally committed as revision 4501 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r--ffmpeg.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/ffmpeg.c b/ffmpeg.c
index beb44ce062..fc3264aae4 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -3116,6 +3116,8 @@ static void opt_input_file(const char *filename)
break;
case CODEC_TYPE_SUBTITLE:
break;
+ case CODEC_TYPE_UNKNOWN:
+ break;
default:
av_abort();
}
@@ -3163,6 +3165,7 @@ static void check_audio_video_inputs(int *has_video_ptr, int *has_audio_ptr)
has_video = 1;
break;
case CODEC_TYPE_DATA:
+ case CODEC_TYPE_UNKNOWN:
case CODEC_TYPE_SUBTITLE:
break;
default: