1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-10-03 17:29:30 +02:00

matroska: add support for A_QUICKTIME/QDM2 codec

Originally committed as revision 14430 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Aurelien Jacobs 2008-07-27 15:12:00 +00:00
parent f009e36f75
commit d3d265b288
2 changed files with 2 additions and 1 deletions

View File

@ -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},

View File

@ -210,7 +210,7 @@ typedef enum {
*/
typedef struct CodecTags{
char str[16];
char str[20];
enum CodecID id;
}CodecTags;