Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
444
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
32548ba0
Commit
32548ba0
authored
2 years ago
by
shangjinlong
Committed by
Hugo Beauzée-Luyssen
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
mux: ts: fix VLC_CODEC_OPUS i_stream_type
parent
25362eb8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!3533
Backport MR 3236 to 3.0.x
,
!1898
mux: ts: fix VLC_CODEC_OPUS i_stream_type
Pipeline
#221818
passed with stage
Stage:
in 22 minutes and 2 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/mux/mpeg/tables.c
+1
-1
1 addition, 1 deletion
modules/mux/mpeg/tables.c
with
1 addition
and
1 deletion
modules/mux/mpeg/tables.c
+
1
−
1
View file @
32548ba0
...
...
@@ -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
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment