demuxer.c: add missing parser list fourccs

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32596 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
cehoyos 2010-11-07 11:00:00 +00:00 committed by Uoti Urpala
parent 9bb304898b
commit 458350350b
1 changed files with 3 additions and 0 deletions

View File

@ -452,6 +452,7 @@ static void allocate_parser(AVCodecContext **avctx, AVCodecParserContext **parse
case 0x2000: case 0x2000:
case 0x332D6361: case 0x332D6361:
case 0x332D4341: case 0x332D4341:
case 0x20736D:
case MKTAG('d', 'n', 'e', 't'): case MKTAG('d', 'n', 'e', 't'):
case MKTAG('s', 'a', 'c', '3'): case MKTAG('s', 'a', 'c', '3'):
codec_id = CODEC_ID_AC3; codec_id = CODEC_ID_AC3;
@ -468,12 +469,14 @@ static void allocate_parser(AVCodecContext **avctx, AVCodecParserContext **parse
break; break;
case 0x55: case 0x55:
case 0x5500736d: case 0x5500736d:
case 0x55005354:
case MKTAG('.', 'm', 'p', '3'): case MKTAG('.', 'm', 'p', '3'):
case MKTAG('M', 'P', '3', ' '): case MKTAG('M', 'P', '3', ' '):
case MKTAG('L', 'A', 'M', 'E'): case MKTAG('L', 'A', 'M', 'E'):
codec_id = CODEC_ID_MP3; codec_id = CODEC_ID_MP3;
break; break;
case 0x50: case 0x50:
case 0x5000736d:
case MKTAG('.', 'm', 'p', '2'): case MKTAG('.', 'm', 'p', '2'):
case MKTAG('.', 'm', 'p', '1'): case MKTAG('.', 'm', 'p', '1'):
codec_id = CODEC_ID_MP2; codec_id = CODEC_ID_MP2;