vlc | branch: master | Rémi Denis-Courmont <[email protected]> | Mon Jul 6 22:49:22 2015 +0300| [672c68057579421d1d672a8420da3539de96ac84] | committer: Rémi Denis-Courmont
Missing space before string constant > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=672c68057579421d1d672a8420da3539de96ac84 --- modules/access/dshow/dshow.cpp | 2 +- modules/demux/mkv/matroska_segment.cpp | 2 +- modules/demux/mkv/virtual_segment.cpp | 2 +- modules/video_output/decklink.cpp | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/access/dshow/dshow.cpp b/modules/access/dshow/dshow.cpp index 6557bc7..000089a 100644 --- a/modules/access/dshow/dshow.cpp +++ b/modules/access/dshow/dshow.cpp @@ -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 diff --git a/modules/demux/mkv/matroska_segment.cpp b/modules/demux/mkv/matroska_segment.cpp index f642b01..f80239e 100644 --- a/modules/demux/mkv/matroska_segment.cpp +++ b/modules/demux/mkv/matroska_segment.cpp @@ -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 diff --git a/modules/demux/mkv/virtual_segment.cpp b/modules/demux/mkv/virtual_segment.cpp index c7852d6..54c65f1 100644 --- a/modules/demux/mkv/virtual_segment.cpp +++ b/modules/demux/mkv/virtual_segment.cpp @@ -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(); diff --git a/modules/video_output/decklink.cpp b/modules/video_output/decklink.cpp index 9c29ee7..4791d2b 100644 --- a/modules/video_output/decklink.cpp +++ b/modules/video_output/decklink.cpp @@ -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: _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
