mirror of https://github.com/mpv-player/mpv
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:
parent
9bb304898b
commit
458350350b
|
@ -452,6 +452,7 @@ static void allocate_parser(AVCodecContext **avctx, AVCodecParserContext **parse
|
|||
case 0x2000:
|
||||
case 0x332D6361:
|
||||
case 0x332D4341:
|
||||
case 0x20736D:
|
||||
case MKTAG('d', 'n', 'e', 't'):
|
||||
case MKTAG('s', 'a', 'c', '3'):
|
||||
codec_id = CODEC_ID_AC3;
|
||||
|
@ -468,12 +469,14 @@ static void allocate_parser(AVCodecContext **avctx, AVCodecParserContext **parse
|
|||
break;
|
||||
case 0x55:
|
||||
case 0x5500736d:
|
||||
case 0x55005354:
|
||||
case MKTAG('.', 'm', 'p', '3'):
|
||||
case MKTAG('M', 'P', '3', ' '):
|
||||
case MKTAG('L', 'A', 'M', 'E'):
|
||||
codec_id = CODEC_ID_MP3;
|
||||
break;
|
||||
case 0x50:
|
||||
case 0x5000736d:
|
||||
case MKTAG('.', 'm', 'p', '2'):
|
||||
case MKTAG('.', 'm', 'p', '1'):
|
||||
codec_id = CODEC_ID_MP2;
|
||||
|
|
Loading…
Reference in New Issue