mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 20:19:55 +00:00
Only autodetect loas in transport streams.
The Makito encoder sets stream type 0x11 for AAC. This patch should be reverted if it breaks decoding valid streams (and the problem can't be fixed in the probe function).
This commit is contained in:
parent
75a225217c
commit
c41bf905f4
@ -525,7 +525,9 @@ static const StreamType ISO_types[] = {
|
||||
{ 0x04, AVMEDIA_TYPE_AUDIO, CODEC_ID_MP3 },
|
||||
{ 0x0f, AVMEDIA_TYPE_AUDIO, CODEC_ID_AAC },
|
||||
{ 0x10, AVMEDIA_TYPE_VIDEO, CODEC_ID_MPEG4 },
|
||||
{ 0x11, AVMEDIA_TYPE_AUDIO, CODEC_ID_AAC_LATM }, /* LATM syntax */
|
||||
/* Makito encoder sets stream type 0x11 for AAC,
|
||||
* so auto-detect LOAS/LATM instead of hardcoding it. */
|
||||
// { 0x11, AVMEDIA_TYPE_AUDIO, CODEC_ID_AAC_LATM }, /* LATM syntax */
|
||||
{ 0x1b, AVMEDIA_TYPE_VIDEO, CODEC_ID_H264 },
|
||||
{ 0xd1, AVMEDIA_TYPE_VIDEO, CODEC_ID_DIRAC },
|
||||
{ 0xea, AVMEDIA_TYPE_VIDEO, CODEC_ID_VC1 },
|
||||
|
Loading…
Reference in New Issue
Block a user