Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
libbluray
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
2
Issues
2
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
VideoLAN
libbluray
Commits
b23d2c20
Commit
b23d2c20
authored
Feb 04, 2010
by
titou10
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added types 0xa1 and 0xa2 for secondary audio streams
parent
e87c6b88
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
src/examples/clpi_dump.c
src/examples/clpi_dump.c
+4
-0
src/libbdnav/clpi_parse.c
src/libbdnav/clpi_parse.c
+2
-0
No files found.
src/examples/clpi_dump.c
View file @
b23d2c20
...
...
@@ -40,6 +40,8 @@ VALUE_MAP codec_map[] = {
{
0x84
,
"AC-3 Plus"
},
{
0x85
,
"DTS-HD"
},
{
0x86
,
"DTS-HD Master"
},
{
0xa1
,
"AC-3 Plus for secondary audio"
},
{
0xa2
,
"DTS-HD for secondary audio"
},
{
0xea
,
"VC-1"
},
{
0x1b
,
"H.264"
},
{
0x90
,
"Presentation Graphics"
},
...
...
@@ -133,6 +135,8 @@ _show_stream(CLPI_PROG_STREAM *ss, int level)
case
0x84
:
case
0x85
:
case
0x86
:
case
0xa1
:
case
0xa2
:
indent_printf
(
level
,
"Format %02x: %s"
,
ss
->
format
,
_lookup_str
(
audio_format_map
,
ss
->
format
));
indent_printf
(
level
,
"Rate %02x:"
,
ss
->
rate
,
...
...
src/libbdnav/clpi_parse.c
View file @
b23d2c20
...
...
@@ -66,6 +66,8 @@ _parse_stream_attr(BITSTREAM *bits, CLPI_PROG_STREAM *ss)
case
0x84
:
case
0x85
:
case
0x86
:
case
0xa1
:
case
0xa2
:
ss
->
format
=
bs_read
(
bits
,
4
);
ss
->
rate
=
bs_read
(
bits
,
4
);
bs_read_bytes
(
bits
,
ss
->
lang
,
3
);
...
...
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