Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
442
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Merge requests
!5717
demux: mkv: separate Chapter Codec implementations
代码
评审变更
检出分支
下载
补丁
文本差异
Merged
demux: mkv: separate Chapter Codec implementations
robUx4/vlc:codec-split
into
master
Overview
4
Commits
28
Pipelines
8
Changes
21
Merged
Steve Lhomme
requested to merge
robUx4/vlc:codec-split
into
master
8 months ago
Overview
4
Commits
28
Pipelines
8
Changes
1
Expand
And move most UI/Button data in the dedicated thread. So it doesn't block the UI.
0
0
Merge request reports
Viewing commit
3cb1fd97
Prev
Next
Show latest version
1 file
+
3
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
3cb1fd97
demux: mkv: skip event if all tracks have been removed
· 3cb1fd97
Steve Lhomme
authored
8 months ago
modules/demux/mkv/events.cpp
+
3
−
0
Options
@@ -145,6 +145,9 @@ void event_thread_t::EventThread()
const
EventInfo
ev
=
pending_events
.
front
();
pending_events
.
pop_front
();
if
(
es_list
.
empty
())
break
;
vlc_mutex_unlock
(
&
lock
);
switch
(
ev
.
type
)
{
Loading