diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-12-04 03:00:53 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-12-04 03:00:53 +0000 |
commit | 4d35964d01001b8695f5d29f56e03ba4d5d87219 (patch) | |
tree | d3d27739f4d079594f51e86e69b343d04b74cca3 /libavformat | |
parent | 02a5ef5329ecc340da1b22b039d37153b3a53f5f (diff) | |
download | ffmpeg-4d35964d01001b8695f5d29f56e03ba4d5d87219.tar.gz |
WRAW fourcc
Originally committed as revision 16001 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/isom.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/isom.c b/libavformat/isom.c index 879135446f..b2e45387be 100644 --- a/libavformat/isom.c +++ b/libavformat/isom.c @@ -106,6 +106,8 @@ const AVCodecTag codec_movvideo_tags[] = { { CODEC_ID_MSRLE, MKTAG('W', 'R', 'L', 'E') }, { CODEC_ID_QDRAW, MKTAG('q', 'd', 'r', 'w') }, /* QuickDraw */ + { CODEC_ID_RAWVIDEO, MKTAG('W', 'R', 'A', 'W') }, + { CODEC_ID_H264, MKTAG('a', 'v', 'c', '1') }, /* AVC-1/H.264 */ { CODEC_ID_MPEG1VIDEO, MKTAG('m', 'p', 'e', 'g') }, /* MPEG */ |