Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
bf49ec23
Commit
bf49ec23
authored
Sep 09, 2008
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
E-AC3 support in mkv files.
parent
434acb18
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
0 deletions
+10
-0
NEWS
NEWS
+1
-0
modules/codec/avcodec/fourcc.h
modules/codec/avcodec/fourcc.h
+5
-0
modules/demux/mkv.cpp
modules/demux/mkv.cpp
+4
-0
No files found.
NEWS
View file @
bf49ec23
...
...
@@ -8,6 +8,7 @@ Inputs:
Decoders:
* AES3 (SMPTE 302M) support
* E-AC3 (A/52b) support
Stream output:
* Restored the old mpeg2 transrating module.
...
...
modules/codec/avcodec/fourcc.h
View file @
bf49ec23
...
...
@@ -859,6 +859,11 @@ static const struct
{
VLC_FOURCC
(
'a'
,
'5'
,
'2'
,
'b'
),
CODEC_ID_AC3
,
/* VLC specific hack */
AUDIO_ES
,
"A52 Audio (aka AC3)"
},
#if LIBAVCODEC_VERSION_INT >= ((52<<16)+(0<<8)+0)
{
VLC_FOURCC
(
'e'
,
'a'
,
'c'
,
'3'
),
CODEC_ID_EAC3
,
AUDIO_ES
,
"A/52 B Audio (aka E-AC3)"
},
#endif
/* DTS Audio */
{
VLC_FOURCC
(
'd'
,
't'
,
's'
,
' '
),
CODEC_ID_DTS
,
AUDIO_ES
,
"DTS Audio"
},
...
...
modules/demux/mkv.cpp
View file @
bf49ec23
...
...
@@ -2410,6 +2410,10 @@ bool matroska_segment_c::Select( mtime_t i_start_time )
{
tracks
[
i_track
]
->
fmt
.
i_codec
=
VLC_FOURCC
(
'a'
,
'5'
,
'2'
,
' '
);
}
else
if
(
!
strcmp
(
tracks
[
i_track
]
->
psz_codec
,
"A_EAC3"
)
)
{
tracks
[
i_track
]
->
fmt
.
i_codec
=
VLC_FOURCC
(
'e'
,
'a'
,
'c'
,
'3'
);
}
else
if
(
!
strcmp
(
tracks
[
i_track
]
->
psz_codec
,
"A_DTS"
)
)
{
tracks
[
i_track
]
->
fmt
.
i_codec
=
VLC_FOURCC
(
'd'
,
't'
,
's'
,
' '
);
...
...
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