]> git.sesse.net Git - vlc/blobdiff - src/audio_output/dec.c
Clip pts_delay from access/demux to 60s.
[vlc] / src / audio_output / dec.c
index a3fe900e808e786f1f469ea060d1c134eb006269..0c2236bc18b4580257c86353ac9d4147e2493f24 100644 (file)
@@ -42,7 +42,7 @@
 /*****************************************************************************
  * aout_DecNew : create a decoder
  *****************************************************************************/
-static aout_input_t * DecNew( vlc_object_t * p_this, aout_instance_t * p_aout,
+static aout_input_t * DecNew( aout_instance_t * p_aout,
                               audio_sample_format_t *p_format,
                               const audio_replay_gain_t *p_replay_gain,
                               const aout_request_vout_t *p_request_vout )
@@ -183,7 +183,7 @@ aout_input_t * __aout_DecNew( vlc_object_t * p_this,
         *pp_aout = p_aout;
     }
 
-    return DecNew( p_this, p_aout, p_format, p_replay_gain, p_request_video );
+    return DecNew( p_aout, p_format, p_replay_gain, p_request_video );
 }
 
 /*****************************************************************************