Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
52200952
Commit
52200952
authored
Nov 16, 2011
by
Can Wu
Committed by
Jean-Baptiste Kempf
Nov 17, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
TS demux: handle es stream type 0x42, which is CAVS
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
756eb4fe
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
modules/demux/ts.c
modules/demux/ts.c
+3
-0
No files found.
modules/demux/ts.c
View file @
52200952
...
@@ -2405,6 +2405,9 @@ static int PIDFillFormat( ts_pid_t *pid, int i_stream_type )
...
@@ -2405,6 +2405,9 @@ static int PIDFillFormat( ts_pid_t *pid, int i_stream_type )
case
0x1B
:
/* H264 <- check transport syntax/needed descriptor */
case
0x1B
:
/* H264 <- check transport syntax/needed descriptor */
es_format_Init
(
fmt
,
VIDEO_ES
,
VLC_CODEC_H264
);
es_format_Init
(
fmt
,
VIDEO_ES
,
VLC_CODEC_H264
);
break
;
break
;
case
0x42
:
/* CAVS (Chinese AVS) */
es_format_Init
(
fmt
,
VIDEO_ES
,
VLC_CODEC_CAVS
);
break
;
case
0x81
:
/* A52 (audio) */
case
0x81
:
/* A52 (audio) */
es_format_Init
(
fmt
,
AUDIO_ES
,
VLC_CODEC_A52
);
es_format_Init
(
fmt
,
AUDIO_ES
,
VLC_CODEC_A52
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment