Commit d4a52416 authored by Gildas Bazin's avatar Gildas Bazin

* modules/stream_out/transcode.c: forgot to remove a variable used for debugging.
parent d4fcb8ee
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* transcode.c * transcode.c
***************************************************************************** *****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN * Copyright (C) 2001, 2002 VideoLAN
* $Id: transcode.c,v 1.20 2003/06/30 20:08:21 gbazin Exp $ * $Id: transcode.c,v 1.21 2003/06/30 20:44:35 gbazin Exp $
* *
* Authors: Laurent Aimar <fenrir@via.ecp.fr> * Authors: Laurent Aimar <fenrir@via.ecp.fr>
* *
...@@ -951,11 +951,8 @@ static int transcode_audio_ffmpeg_process( sout_stream_t *p_stream, ...@@ -951,11 +951,8 @@ static int transcode_audio_ffmpeg_process( sout_stream_t *p_stream,
id->i_samples_delay -= i_samples; id->i_samples_delay -= i_samples;
static mtime_t i_old_dts = 0;
/* update dts */ /* update dts */
id->i_dts += p_out->i_length; id->i_dts += p_out->i_length;
i_old_dts = id->i_dts;
sout_BufferChain( out, p_out ); sout_BufferChain( out, p_out );
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment