[vlc-commits] avformat: fix incorrect log

Steve Lhomme git at videolan.org
Sat Oct 31 17:30:48 CET 2015


vlc/vlc-2.2 | branch: master | Steve Lhomme <robux4 at videolabs.io> | Fri Oct 30 18:18:01 2015 +0100| [24b35656ebef0aae52b280baf78ef7b5e64dbeb9] | committer: Jean-Baptiste Kempf

avformat: fix incorrect log

Signed-off-by: Rémi Denis-Courmont <remi at remlab.net>
(cherry picked from commit 84e2d1d74793a4cd5051cf8396daeeee2aea2db0)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=24b35656ebef0aae52b280baf78ef7b5e64dbeb9
---

 modules/demux/avformat/demux.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/demux/avformat/demux.c b/modules/demux/avformat/demux.c
index 2b33de7..ff6d740 100644
--- a/modules/demux/avformat/demux.c
+++ b/modules/demux/avformat/demux.c
@@ -1072,7 +1072,7 @@ static int Control( demux_t *p_demux, int i_query, va_list args )
             i64 = p_sys->p_title->seekpoint[i_seekpoint]->i_time_offset *
                   AV_TIME_BASE / 1000000 + i_start_time;
 
-            msg_Warn( p_demux, "DEMUX_SET_TIME: %"PRId64, i64 );
+            msg_Warn( p_demux, "DEMUX_SET_SEEKPOINT: %"PRId64, i64 );
 
             if( av_seek_frame( p_sys->ic, -1, i64, AVSEEK_FLAG_BACKWARD ) < 0 )
             {



More information about the vlc-commits mailing list