Add AURA 1 and 2 codec IDs and register their FOURCCs

Originally committed as revision 18141 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Kostya Shishkov 2009-03-22 07:40:22 +00:00
parent 5c5776e10d
commit c21fbefb9d
2 changed files with 4 additions and 0 deletions

View File

@ -191,6 +191,8 @@ enum CodecID {
CODEC_ID_TGV,
CODEC_ID_TGQ,
CODEC_ID_TQI,
CODEC_ID_AURA,
CODEC_ID_AURA2,
/* various PCM "codecs" */
CODEC_ID_PCM_S16LE= 0x10000,

View File

@ -202,6 +202,8 @@ const AVCodecTag codec_bmp_tags[] = {
{ CODEC_ID_RPZA, MKTAG('R', 'P', 'Z', 'A') },
{ CODEC_ID_RPZA, MKTAG('r', 'p', 'z', 'a') },
{ CODEC_ID_SP5X, MKTAG('S', 'P', '5', '4') },
{ CODEC_ID_AURA, MKTAG('A', 'U', 'R', 'A') },
{ CODEC_ID_AURA2, MKTAG('A', 'U', 'R', '2') },
{ CODEC_ID_NONE, 0 }
};