Mercurial > mplayer.hg
changeset 32509:190a7fc12929
Add missing fourcc's that require libavcodec parsing.
author | cehoyos |
---|---|
date | Sun, 07 Nov 2010 11:00:00 +0000 |
parents | ce7fa2398617 |
children | b756312f1d15 |
files | libmpdemux/demuxer.c |
diffstat | 1 files changed, 3 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/libmpdemux/demuxer.c Sun Nov 07 10:55:01 2010 +0000 +++ b/libmpdemux/demuxer.c Sun Nov 07 11:00:00 2010 +0000 @@ -478,6 +478,7 @@ 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; @@ -494,12 +495,14 @@ 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;