mirror of https://github.com/mpv-player/mpv
demuxer.c: Add support for parsing LATM
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32582 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
8d89878e7f
commit
e666e3ce91
|
@ -444,6 +444,11 @@ static void allocate_parser(AVCodecContext **avctx, AVCodecParserContext **parse
|
|||
init_avcodec();
|
||||
|
||||
switch (format) {
|
||||
#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT(52, 94, 0)
|
||||
case MKTAG('M', 'P', '4', 'L'):
|
||||
codec_id = CODEC_ID_AAC_LATM;
|
||||
break;
|
||||
#endif
|
||||
case 0x2000:
|
||||
case 0x332D6361:
|
||||
case 0x332D4341:
|
||||
|
|
Loading…
Reference in New Issue