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
4519ef1e
Commit
4519ef1e
authored
Aug 16, 2006
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/demux/mkv.cpp: remove useless printf()s
parent
300a5c10
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
modules/demux/mkv.cpp
modules/demux/mkv.cpp
+4
-4
No files found.
modules/demux/mkv.cpp
View file @
4519ef1e
...
...
@@ -1997,7 +1997,7 @@ static void BlockDecode( demux_t *p_demux, KaxBlock *block, mtime_t i_pts,
if
(
f_mandatory
)
p_block
->
i_dts
=
p_block
->
i_pts
;
else
p_block
->
i_dts
=
min
(
i_pts
,
tk
->
i_last_dts
+
(
tk
->
i_default_duration
>>
10
));
p_block
->
i_dts
=
min
(
i_pts
,
tk
->
i_last_dts
+
(
mtime_t
)(
tk
->
i_default_duration
>>
10
));
p_sys
->
i_pts
=
p_block
->
i_dts
;
}
}
...
...
@@ -4911,8 +4911,6 @@ void matroska_segment_c::ParseCluster( )
*****************************************************************************/
void
matroska_segment_c
::
InformationCreate
(
)
{
size_t
i_track
;
sys
.
meta
=
vlc_meta_New
();
if
(
psz_title
)
...
...
@@ -4923,6 +4921,7 @@ void matroska_segment_c::InformationCreate( )
{
vlc_meta_SetDate
(
sys
.
meta
,
psz_date_utc
);
}
#if 0
if( psz_segment_filename )
{
fprintf( stderr, "***** WARNING: Unhandled meta - Use custom\n" );
...
...
@@ -4936,12 +4935,13 @@ void matroska_segment_c::InformationCreate( )
fprintf( stderr, "***** WARNING: Unhandled meta - Use custom\n" );
}
for
(
i_track
=
0
;
i_track
<
tracks
.
size
();
i_track
++
)
for(
size_t
i_track = 0; i_track < tracks.size(); i_track++ )
{
// mkv_track_t *tk = tracks[i_track];
// vlc_meta_t *mtk = vlc_meta_New();
fprintf( stderr, "***** WARNING: Unhandled child meta\n");
}
#endif
if
(
i_tags_position
>=
0
)
{
...
...
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