diff options
author | Mike Melanson <mike@multimedia.cx> | 2004-09-28 03:09:49 +0000 |
---|---|---|
committer | Mike Melanson <mike@multimedia.cx> | 2004-09-28 03:09:49 +0000 |
commit | d08d7142fd279cf30f35bdef9b982ea47d65c535 (patch) | |
tree | c59940142be72b92262e88ba4c2e5e3b8716e5da /libavformat/mov.c | |
parent | 98772cbf7be46ac50ee12da805c1ed923e02813d (diff) | |
download | ffmpeg-d08d7142fd279cf30f35bdef9b982ea47d65c535.tar.gz |
support for Sierra Online audio files and Apple QuickDraw codec,
courtesy of Konstantin Shishkov
Originally committed as revision 3529 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mov.c')
-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 01d2204553..001481e0d7 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -115,6 +115,7 @@ static const CodecTag mov_video_tags[] = { { CODEC_ID_8BPS, MKTAG('8', 'B', 'P', 'S') }, /* Planar RGB (8BPS) */ { CODEC_ID_SMC, MKTAG('s', 'm', 'c', ' ') }, /* Apple Graphics (SMC) */ { CODEC_ID_QTRLE, MKTAG('r', 'l', 'e', ' ') }, /* Apple Animation (RLE) */ + { CODEC_ID_QDRAW, MKTAG('q', 'd', 'r', 'w') }, /* QuickDraw */ { CODEC_ID_NONE, 0 }, }; |