Skip to content
Snippets Groups Projects
Commit 32548ba0 authored by shangjinlong's avatar shangjinlong Committed by Hugo Beauzée-Luyssen
Browse files

mux: ts: fix VLC_CODEC_OPUS i_stream_type

parent 25362eb8
No related branches found
No related tags found
2 merge requests!3533Backport MR 3236 to 3.0.x,!1898mux: ts: fix VLC_CODEC_OPUS i_stream_type
Pipeline #221818 passed with stage
in 22 minutes and 2 seconds
......@@ -812,8 +812,8 @@ int FillPMTESParams( ts_mux_standard standard, const es_format_t *fmt,
case VLC_CODEC_OPUS:
if (fmt->audio.i_channels > 8)
return VLC_EGENERIC;
ts->i_stream_type = 0x06;
pes->i_stream_id = 0xbd;
pes->i_stream_id = 0x06;
break;
case VLC_CODEC_EAC3:
pes->i_stream_id = 0xbd;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment