mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-23 23:21:06 +01:00
lavf/mpeg: Add G.711 A law support
Add G.711 A law support Signed-off-by: Jun Zhao <barryjzhao@tencent.com>
This commit is contained in:
parent
9a23d8d894
commit
a53bb071fe
1 changed files with 3 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue