[vlc-commits] input: remove references to nonexistent _OFFSET controls

Rémi Denis-Courmont git at videolan.org
Sat Jun 25 17:47:27 CEST 2016


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sat Jun 25 18:45:57 2016 +0300| [5d3ad7d931843a8e2917b0cbe8e83b606c250b70] | committer: Rémi Denis-Courmont

input: remove references to nonexistent _OFFSET controls

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

 src/input/input.c |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/input/input.c b/src/input/input.c
index 214d0ae..5f6aef8 100644
--- a/src/input/input.c
+++ b/src/input/input.c
@@ -1712,7 +1712,7 @@ static bool Control( input_thread_t *p_input,
         {
             if( p_input->p->b_recording )
             {
-                msg_Err( p_input, "INPUT_CONTROL_SET_POSITION(_OFFSET) ignored while recording" );
+                msg_Err( p_input, "INPUT_CONTROL_SET_POSITION ignored while recording" );
                 break;
             }
 
@@ -1726,7 +1726,7 @@ static bool Control( input_thread_t *p_input,
             if( demux_Control( p_input->p->master->p_demux, DEMUX_SET_POSITION,
                                (double) f_pos, !p_input->p->b_fast_seek ) )
             {
-                msg_Err( p_input, "INPUT_CONTROL_SET_POSITION(_OFFSET) "
+                msg_Err( p_input, "INPUT_CONTROL_SET_POSITION "
                          "%2.1f%% failed", (double)(f_pos * 100.f) );
             }
             else
@@ -1747,7 +1747,7 @@ static bool Control( input_thread_t *p_input,
 
             if( p_input->p->b_recording )
             {
-                msg_Err( p_input, "INPUT_CONTROL_SET_TIME(_OFFSET) ignored while recording" );
+                msg_Err( p_input, "INPUT_CONTROL_SET_TIME ignored while recording" );
                 break;
             }
 
@@ -1777,7 +1777,7 @@ static bool Control( input_thread_t *p_input,
             }
             if( i_ret )
             {
-                msg_Warn( p_input, "INPUT_CONTROL_SET_TIME(_OFFSET) %"PRId64
+                msg_Warn( p_input, "INPUT_CONTROL_SET_TIME %"PRId64
                          " failed or not possible", i_time );
             }
             else



More information about the vlc-commits mailing list