Skip to content
Snippets Groups Projects
Commit 31c7dc12 authored by shangjinlong's avatar shangjinlong Committed by Felix Paul Kühne
Browse files

mux: ts: fix VLC_CODEC_OPUS i_stream_type

parent c2d91aab
No related branches found
No related tags found
1 merge request!1900mux: ts: fix VLC_CODEC_OPUS i_stream_type
Pipeline #220712 passed with stages
in 24 minutes and 33 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