Commit a54eb77f authored by Laurent Aimar's avatar Laurent Aimar

* real: fixed unused variable warnings.

parent 40310f02
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* real.c: Real demuxer. * real.c: Real demuxer.
***************************************************************************** *****************************************************************************
* Copyright (C) 2004 VideoLAN * Copyright (C) 2004 VideoLAN
* $Id: real.c,v 1.3 2004/01/25 20:05:28 hartman Exp $ * $Id$
* *
* Authors: Laurent Aimar <fenrir@via.ecp.fr> * Authors: Laurent Aimar <fenrir@via.ecp.fr>
* *
...@@ -90,8 +90,6 @@ static int Open( vlc_object_t *p_this ) ...@@ -90,8 +90,6 @@ static int Open( vlc_object_t *p_this )
uint8_t *p_peek; uint8_t *p_peek;
int i;
if( stream_Peek( p_demux->s, &p_peek, 10 ) < 10 ) if( stream_Peek( p_demux->s, &p_peek, 10 ) < 10 )
{ {
msg_Err( p_demux, "cannot peek" ); msg_Err( p_demux, "cannot peek" );
...@@ -489,11 +487,11 @@ static int Demux( demux_t *p_demux ) ...@@ -489,11 +487,11 @@ static int Demux( demux_t *p_demux )
*****************************************************************************/ *****************************************************************************/
static int Control( demux_t *p_demux, int i_query, va_list args ) static int Control( demux_t *p_demux, int i_query, va_list args )
{ {
#if 0
demux_sys_t *p_sys = p_demux->p_sys; demux_sys_t *p_sys = p_demux->p_sys;
double f, *pf; double f, *pf;
int64_t i64, *pi64; int64_t i64, *pi64;
#if 0
switch( i_query ) switch( i_query )
{ {
case DEMUX_GET_POSITION: case DEMUX_GET_POSITION:
......
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