[vlc-commits] stream: fix stream_Control(SET_POSITION)

Rémi Denis-Courmont git at videolan.org
Sat Jul 25 12:34:14 CEST 2015


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sat Jul 25 13:28:26 2015 +0300| [76f555de870609ce4819fd6931219a51cd14a611] | committer: Rémi Denis-Courmont

stream: fix stream_Control(SET_POSITION)

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=76f555de870609ce4819fd6931219a51cd14a611
---

 src/input/stream.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/input/stream.c b/src/input/stream.c
index dfc1604..c12ed1a 100644
--- a/src/input/stream.c
+++ b/src/input/stream.c
@@ -493,7 +493,7 @@ int stream_Control( stream_t *s, int i_query, ... )
         return VLC_EGENERIC;
 
     va_start( args, i_query );
-    i_result = s->pf_control( s, i_query, args );
+    i_result = stream_vaControl( s, i_query, args );
     va_end( args );
     return i_result;
 }



More information about the vlc-commits mailing list