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
020d6bb4
Commit
020d6bb4
authored
Mar 22, 2014
by
Denis Charmet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add basic A_QUICKTIME audio support in MKV
Fix partially #11038 since seek is still broken
parent
2cb87846
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
modules/demux/mkv/matroska_segment_parse.cpp
modules/demux/mkv/matroska_segment_parse.cpp
+14
-0
No files found.
modules/demux/mkv/matroska_segment_parse.cpp
View file @
020d6bb4
...
...
@@ -1711,6 +1711,20 @@ int32_t matroska_segment_c::TrackInit( mkv_track_t * p_tk )
}
}
}
else
if
(
!
strncmp
(
p_tk
->
psz_codec
,
"A_QUICKTIME"
,
11
)
)
{
p_tk
->
fmt
.
i_cat
=
AUDIO_ES
;
if
(
!
strncmp
(
p_tk
->
psz_codec
+
11
,
"/QDM2"
,
5
)
)
p_tk
->
fmt
.
i_codec
=
VLC_CODEC_QDM2
;
else
if
(
!
strncmp
(
p_tk
->
psz_codec
+
11
,
"/QDMC"
,
5
)
)
p_tk
->
fmt
.
i_codec
=
VLC_FOURCC
(
'Q'
,
'D'
,
'M'
,
'C'
);
else
if
(
p_tk
->
i_extra_data
>=
8
)
p_tk
->
fmt
.
i_codec
=
VLC_FOURCC
(
p_tk
->
p_extra_data
[
4
],
p_tk
->
p_extra_data
[
5
],
p_tk
->
p_extra_data
[
6
],
p_tk
->
p_extra_data
[
7
]);
fill_extra_data
(
p_tk
,
0
);
}
else
if
(
!
strcmp
(
p_tk
->
psz_codec
,
"S_KATE"
)
)
{
p_tk
->
fmt
.
i_codec
=
VLC_CODEC_KATE
;
...
...
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