X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=libavformat%2Fmpeg.c;h=781c3162d6dec2952196faeadb39d236c6fd8605;hb=2b01b7918beebe7b392ebf255f887e396a59e4c6;hp=864b08d8f8be85720b0c8c3465631de6370add35;hpb=55e5af3c03898ffbac352fe4af83208fa4129c71;p=platform%2Fupstream%2Fffmpeg.git diff --git a/libavformat/mpeg.c b/libavformat/mpeg.c index 864b08d..781c316 100644 --- a/libavformat/mpeg.c +++ b/libavformat/mpeg.c @@ -549,6 +549,9 @@ redo: } else if (es_type == STREAM_TYPE_AUDIO_AC3) { codec_id = AV_CODEC_ID_AC3; type = AVMEDIA_TYPE_AUDIO; + } else if (es_type == 0x90) { + codec_id = AV_CODEC_ID_PCM_ALAW; + type = AVMEDIA_TYPE_AUDIO; } else if (m->imkh_cctv && es_type == 0x91) { codec_id = AV_CODEC_ID_PCM_MULAW; type = AVMEDIA_TYPE_AUDIO;