Commit a53bb071 authored by Jun Zhao's avatar Jun Zhao Committed by Jun Zhao

lavf/mpeg: Add G.711 A law support

Add G.711 A law support
Signed-off-by: 's avatarJun Zhao <barryjzhao@tencent.com>
parent 9a23d8d8
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment