[vlc-commits] Removed commented out code in AVI demuxer.
Laurent Aimar
git at videolan.org
Fri Jun 1 21:26:38 CEST 2012
vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Wed May 30 22:12:58 2012 +0200| [ec45c6ba579262131230a0d1c4c221758cbb7c00] | committer: Laurent Aimar
Removed commented out code in AVI demuxer.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ec45c6ba579262131230a0d1c4c221758cbb7c00
---
modules/demux/avi/avi.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/modules/demux/avi/avi.c b/modules/demux/avi/avi.c
index 7358ce4..fe249cf 100644
--- a/modules/demux/avi/avi.c
+++ b/modules/demux/avi/avi.c
@@ -1160,7 +1160,6 @@ static int Demux_Seekable( demux_t *p_demux )
p_frame->i_pts = VLC_TS_INVALID;
}
- //p_pes->i_rate = p_demux->stream.control.i_rate;
if( tk->i_dv_audio_rate )
AVI_DvHandleAudio( p_demux, tk, p_frame );
es_out_Send( p_demux->out, tk->p_es, p_frame );
@@ -1277,7 +1276,6 @@ static int Demux_UnSeekable( demux_t *p_demux )
p_frame->i_pts = VLC_TS_INVALID;
}
- //p_pes->i_rate = p_demux->stream.control.i_rate;
if( p_stream->i_dv_audio_rate )
AVI_DvHandleAudio( p_demux, p_stream, p_frame );
es_out_Send( p_demux->out, p_stream->p_es, p_frame );
More information about the vlc-commits
mailing list