diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2006-08-09 12:10:25 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2006-08-09 12:10:25 +0000 |
commit | 61e3dd7865154a79045a74241593ac9163a561e3 (patch) | |
tree | 5fea603e7f14a360c0ef23499520fa0a79d5f160 | |
parent | 76c9cb0a7a2a75f26da144eb239dd48938fe94ed (diff) | |
download | ffmpeg-61e3dd7865154a79045a74241593ac9163a561e3.tar.gz |
enable 'NONE' audio fourcc
Originally committed as revision 5968 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/mov.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index fc6006d28c..bc87e1dd2a 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -122,7 +122,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('N', 'O', 'N', 'E') }, /* uncompressed */ { CODEC_ID_PCM_S16BE, MKTAG('t', 'w', 'o', 's') }, /* 16 bits */ /* { CODEC_ID_PCM_S8, MKTAG('t', 'w', 'o', 's') },*/ /* 8 bits */ { CODEC_ID_PCM_U8, MKTAG('r', 'a', 'w', ' ') }, /* 8 bits unsigned */ |