Commit 0330bbed authored by Christophe Massiot's avatar Christophe Massiot

Cosmetic.

parent 69dd295b
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* vpar_headers.c : headers parsing * vpar_headers.c : headers parsing
***************************************************************************** *****************************************************************************
* Copyright (C) 1999-2001 VideoLAN * Copyright (C) 1999-2001 VideoLAN
* $Id: headers.c,v 1.3 2002/08/12 09:34:15 sam Exp $ * $Id: headers.c,v 1.4 2002/10/23 22:05:22 massiot Exp $
* *
* Authors: Christophe Massiot <massiot@via.ecp.fr> * Authors: Christophe Massiot <massiot@via.ecp.fr>
* Stphane Borel <stef@via.ecp.fr> * Stphane Borel <stef@via.ecp.fr>
...@@ -309,13 +309,10 @@ static void SequenceHeader( vpar_thread_t * p_vpar ) ...@@ -309,13 +309,10 @@ static void SequenceHeader( vpar_thread_t * p_vpar )
}; };
#undef RESERVED #undef RESERVED
int i_height_save, i_width_save, i_aspect; int i_aspect;
vout_thread_t *p_vout; vout_thread_t *p_vout;
i_height_save = p_vpar->sequence.i_height;
i_width_save = p_vpar->sequence.i_width;
p_vpar->sequence.i_width = GetBits( &p_vpar->bit_stream, 12 ); p_vpar->sequence.i_width = GetBits( &p_vpar->bit_stream, 12 );
p_vpar->sequence.i_height = GetBits( &p_vpar->bit_stream, 12 ); p_vpar->sequence.i_height = GetBits( &p_vpar->bit_stream, 12 );
i_aspect = GetBits( &p_vpar->bit_stream, 4 ); i_aspect = GetBits( &p_vpar->bit_stream, 4 );
...@@ -477,14 +474,6 @@ static void SequenceHeader( vpar_thread_t * p_vpar ) ...@@ -477,14 +474,6 @@ static void SequenceHeader( vpar_thread_t * p_vpar )
break; break;
} }
#if 0
if( p_vpar->sequence.i_width != i_width_save
|| p_vpar->sequence.i_height != i_height_save )
{
/* FIXME: Warn the video output */
}
#endif
/* Extension and User data */ /* Extension and User data */
ExtensionAndUserData( p_vpar ); ExtensionAndUserData( p_vpar );
......
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