Commit 1b14a123 authored by aurel's avatar aurel

matroska: add support for A_QUICKTIME/QDM2 codec

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14430 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 57a8a728
......@@ -59,6 +59,7 @@ const CodecTags ff_mkv_codec_tags[]={
{"A_REAL/ATRC" , CODEC_ID_ATRAC3},
{"A_REAL/COOK" , CODEC_ID_COOK},
// {"A_REAL/SIPR" , CODEC_ID_SIPRO},
{"A_QUICKTIME/QDM2" , CODEC_ID_QDM2},
{"S_TEXT/UTF8" , CODEC_ID_TEXT},
{"S_TEXT/ASCII" , CODEC_ID_TEXT},
......
......@@ -210,7 +210,7 @@ typedef enum {
*/
typedef struct CodecTags{
char str[16];
char str[20];
enum CodecID id;
}CodecTags;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment