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
672c6805
Commit
672c6805
authored
Jul 06, 2015
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Missing space before string constant
parent
f0e29749
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
modules/access/dshow/dshow.cpp
modules/access/dshow/dshow.cpp
+1
-1
modules/demux/mkv/matroska_segment.cpp
modules/demux/mkv/matroska_segment.cpp
+1
-1
modules/demux/mkv/virtual_segment.cpp
modules/demux/mkv/virtual_segment.cpp
+1
-1
modules/video_output/decklink.cpp
modules/video_output/decklink.cpp
+2
-2
No files found.
modules/access/dshow/dshow.cpp
View file @
672c6805
...
...
@@ -1886,7 +1886,7 @@ static int Demux( demux_t *p_demux )
else
i_pts
=
VLC_TS_INVALID
;
#if 0
msg_Dbg( p_demux, "Read() stream: %i, size: %i, PTS: %"PRId64,
msg_Dbg( p_demux, "Read() stream: %i, size: %i, PTS: %"
PRId64,
i_stream, i_data_size, i_pts );
#endif
...
...
modules/demux/mkv/matroska_segment.cpp
View file @
672c6805
...
...
@@ -224,7 +224,7 @@ void matroska_segment_c::LoadCues( KaxCues *cues )
ep
->
Up
();
#if 0
msg_Dbg( &sys.demuxer, " * added time=%"
PRId64" pos=%"
PRId64
msg_Dbg( &sys.demuxer, " * added time=%"
PRId64 " pos=%"
PRId64
" track=%d bnum=%d", idx.i_time, idx.i_position,
idx.i_track, idx.i_block_number );
#endif
...
...
modules/demux/mkv/virtual_segment.cpp
View file @
672c6805
...
...
@@ -614,7 +614,7 @@ bool virtual_chapter_c::Leave( bool b_do_subs )
#ifdef MKV_DEBUG
void
virtual_chapter_c
::
print
()
{
msg_Dbg
(
&
p_segment
->
sys
.
demuxer
,
"*** chapter %"
PRId64
" - %"
PRId64
" (%u)"
,
msg_Dbg
(
&
p_segment
->
sys
.
demuxer
,
"*** chapter %"
PRId64
" - %"
PRId64
" (%u)"
,
i_mk_virtual_start_time
,
i_mk_virtual_stop_time
,
sub_chapters
.
size
()
);
for
(
size_t
i
=
0
;
i
<
sub_chapters
.
size
();
i
++
)
sub_chapters
[
i
]
->
print
();
...
...
modules/video_output/decklink.cpp
View file @
672c6805
...
...
@@ -652,7 +652,7 @@ static void DisplayVideo(vout_display_t *vd, picture_t *picture, subpicture_t *)
picture
->
date
,
length
,
CLOCK_FREQ
);
if
(
result
!=
S_OK
)
{
msg_Err
(
vd
,
"Dropped Video frame %"
PRId64
": 0x%x"
,
msg_Err
(
vd
,
"Dropped Video frame %"
PRId64
": 0x%x"
,
picture
->
date
,
result
);
goto
end
;
}
...
...
@@ -666,7 +666,7 @@ static void DisplayVideo(vout_display_t *vd, picture_t *picture, subpicture_t *)
if
((
now
-
decklink_now
)
>
400000
)
{
/* XXX: workaround card clock drift */
decklink_sys
->
offset
+=
50000
;
msg_Err
(
vd
,
"Delaying: offset now %"
PRId64
""
,
decklink_sys
->
offset
);
msg_Err
(
vd
,
"Delaying: offset now %"
PRId64
,
decklink_sys
->
offset
);
}
end:
...
...
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