demuxer.c: fix parser list fourcc typo: 'MPE '->'MP3 '

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

View File

@ -469,7 +469,7 @@ static void allocate_parser(AVCodecContext **avctx, AVCodecParserContext **parse
case 0x55:
case 0x5500736d:
case MKTAG('.', 'm', 'p', '3'):
case MKTAG('M', 'P', 'E', ' '):
case MKTAG('M', 'P', '3', ' '):
case MKTAG('L', 'A', 'M', 'E'):
codec_id = CODEC_ID_MP3;
break;