diff options
author | Baptiste Coudurier <baptiste.coudurier@smartjog.com> | 2006-02-18 09:05:07 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2006-02-18 09:05:07 +0000 |
commit | bd12d3e9dc0fe9470d078c5433c6a512108d0499 (patch) | |
tree | 08ece06609bd3b3d9da55153727536dc95bd6cab | |
parent | 4ea28253b6d67bec160a9a53eb924cdc4ecaaea1 (diff) | |
download | ffmpeg-bd12d3e9dc0fe9470d078c5433c6a512108d0499.tar.gz |
add 'in32' fourcc support patch by (Baptiste COUDURIER <baptiste.coudurier 0 smartjog o com>)
Originally committed as revision 5032 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/mov.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index 3555f6830d..6da7c14c76 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -155,6 +155,7 @@ static const CodecTag mov_video_tags[] = { }; static const CodecTag mov_audio_tags[] = { + { CODEC_ID_PCM_S32BE, MKTAG('i', 'n', '3', '2') }, { CODEC_ID_PCM_S24BE, MKTAG('i', 'n', '2', '4') }, /* { CODEC_ID_PCM_S16BE, MKTAG('N', 'O', 'N', 'E') }, *//* uncompressed */ { CODEC_ID_PCM_S16BE, MKTAG('t', 'w', 'o', 's') }, /* 16 bits */ |