diff options
author | Oded Shimon <ods15@ods15.dyndns.org> | 2006-11-17 16:54:18 +0000 |
---|---|---|
committer | Oded Shimon <ods15@ods15.dyndns.org> | 2006-11-17 16:54:18 +0000 |
commit | 468f8102d5a1aedac7b77736504ac45c96a364aa (patch) | |
tree | de12ebe8ede6e727523c161f92ddab95698a231d | |
parent | bf054f7430c6fa333cda370537b2a7ee3686d053 (diff) | |
download | ffmpeg-468f8102d5a1aedac7b77736504ac45c96a364aa.tar.gz |
change mpeg4 fourcc from "mp4s" to "mp4v"
Originally committed as revision 7116 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/libnut.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/libnut.c b/libavformat/libnut.c index 239ba36a3c..d4e7201ab9 100644 --- a/libavformat/libnut.c +++ b/libavformat/libnut.c @@ -11,7 +11,7 @@ typedef struct { } NUTContext; static const CodecTag nut_tags[] = { - { CODEC_ID_MPEG4, MKTAG('m', 'p', '4', 's') }, + { CODEC_ID_MPEG4, MKTAG('m', 'p', '4', 'v') }, { CODEC_ID_MP3, MKTAG('m', 'p', '3', ' ') }, { CODEC_ID_VORBIS, MKTAG('v', 'r', 'b', 's') }, { 0, 0 }, |