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
f9701bc5
Commit
f9701bc5
authored
Sep 07, 2004
by
Sigmund Augdal Helberg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed track selection for mkv-files with default flag set on tracks.
parent
06a696f8
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
TODO
TODO
+1
-2
modules/demux/mkv.cpp
modules/demux/mkv.cpp
+4
-0
No files found.
TODO
View file @
f9701bc5
...
@@ -167,7 +167,6 @@ Description: flash video playing/streaming
...
@@ -167,7 +167,6 @@ Description: flash video playing/streaming
A flash video muxer and demuxer. FFMPEG can already output flash video. a wast not to make use of that capability.
A flash video muxer and demuxer. FFMPEG can already output flash video. a wast not to make use of that capability.
Status: Todo
Status: Todo
Task
Task
Task
Difficulty: Medium
Difficulty: Medium
Urgency: Wishlist
Urgency: Wishlist
...
@@ -498,7 +497,7 @@ Difficulty: Medium
...
@@ -498,7 +497,7 @@ Difficulty: Medium
Platform: any
Platform: any
Urgency: Normal
Urgency: Normal
Description: Update matroska demux
Description: Update matroska demux
Support default track fla
g
Better Seekin
g
General bugfixes
General bugfixes
Status: Todo
Status: Todo
...
...
modules/demux/mkv.cpp
View file @
f9701bc5
...
@@ -651,6 +651,10 @@ static int Open( vlc_object_t * p_this )
...
@@ -651,6 +651,10 @@ static int Open( vlc_object_t * p_this )
msg_Err
(
p_demux
,
"unknow codec id=`%s'"
,
tk
.
psz_codec
);
msg_Err
(
p_demux
,
"unknow codec id=`%s'"
,
tk
.
psz_codec
);
tk
.
fmt
.
i_codec
=
VLC_FOURCC
(
'u'
,
'n'
,
'd'
,
'f'
);
tk
.
fmt
.
i_codec
=
VLC_FOURCC
(
'u'
,
'n'
,
'd'
,
'f'
);
}
}
if
(
tk
.
b_default
)
{
tk
.
fmt
.
i_priority
=
1000
;
}
tk
.
p_es
=
es_out_Add
(
p_demux
->
out
,
&
tk
.
fmt
);
tk
.
p_es
=
es_out_Add
(
p_demux
->
out
,
&
tk
.
fmt
);
#undef tk
#undef tk
...
...
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