Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
8babc068
Commit
8babc068
authored
Apr 30, 2015
by
Hugo Beauzée-Luyssen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mkv: util: Fix C++11 build
parent
edf1c760
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modules/demux/mkv/util.cpp
modules/demux/mkv/util.cpp
+2
-2
No files found.
modules/demux/mkv/util.cpp
View file @
8babc068
...
@@ -186,7 +186,7 @@ void handle_real_audio(demux_t * p_demux, mkv_track_t * p_tk, block_t * p_blk, m
...
@@ -186,7 +186,7 @@ void handle_real_audio(demux_t * p_demux, mkv_track_t * p_tk, block_t * p_blk, m
if
(
!
(
p_blk
->
i_flags
&
BLOCK_FLAG_TYPE_I
)
)
if
(
!
(
p_blk
->
i_flags
&
BLOCK_FLAG_TYPE_I
)
)
{
{
msg_Dbg
(
p_demux
,
"discard non-key preroll block in track %d at%"
PRId64
,
msg_Dbg
(
p_demux
,
"discard non-key preroll block in track %d at%"
PRId64
,
p_tk
->
i_number
,
i_pts
);
p_tk
->
i_number
,
i_pts
);
return
;
return
;
}
}
...
@@ -293,7 +293,7 @@ void send_Block( demux_t * p_demux, mkv_track_t * p_tk, block_t * p_block, unsig
...
@@ -293,7 +293,7 @@ void send_Block( demux_t * p_demux, mkv_track_t * p_tk, block_t * p_block, unsig
}
}
#if 0
#if 0
msg_Dbg( p_demux, "block (track=%d) i_dts: %"
PRId64" / i_pts: %"
PRId64, p_tk->i_number, p_block->i_dts, p_block->i_pts);
msg_Dbg( p_demux, "block (track=%d) i_dts: %"
PRId64" / i_pts: %"
PRId64, p_tk->i_number, p_block->i_dts, p_block->i_pts);
#endif
#endif
es_out_Send
(
p_demux
->
out
,
p_tk
->
p_es
,
p_block
);
es_out_Send
(
p_demux
->
out
,
p_tk
->
p_es
,
p_block
);
...
...
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