diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-10-09 22:58:31 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2011-10-09 22:58:31 +0200 |
commit | 059707ee2d71c3b2ae94b240559d893b1eeda903 (patch) | |
tree | ec3640892ee74ceaf17e09baee686798acd5e3b6 /libavformat | |
parent | 7e75f061825dd29059ae3110814c8e424aa1e2e2 (diff) | |
download | ffmpeg-059707ee2d71c3b2ae94b240559d893b1eeda903.tar.gz |
Do not auto-detect Sorenson Spark in f4v.
Assuming codec_tag H263 for FLV only leads to trouble.
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/isom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/isom.c b/libavformat/isom.c index 9945fa295b..ea20c3c773 100644 --- a/libavformat/isom.c +++ b/libavformat/isom.c @@ -204,7 +204,7 @@ const AVCodecTag codec_movvideo_tags[] = { { CODEC_ID_DIRAC, MKTAG('d', 'r', 'a', 'c') }, { CODEC_ID_DNXHD, MKTAG('A', 'V', 'd', 'n') }, /* AVID DNxHD */ - { CODEC_ID_FLV1, MKTAG('H', '2', '6', '3') }, /* Flash Media Server */ +// { CODEC_ID_FLV1, MKTAG('H', '2', '6', '3') }, /* Flash Media Server */ { CODEC_ID_MSMPEG4V3, MKTAG('3', 'I', 'V', 'D') }, /* 3ivx DivX Doctor */ { CODEC_ID_RAWVIDEO, MKTAG('A', 'V', '1', 'x') }, /* AVID 1:1x */ { CODEC_ID_RAWVIDEO, MKTAG('A', 'V', 'u', 'p') }, |