Commit a1b3ffae authored by Gildas Bazin's avatar Gildas Bazin

* include/vlc_block_helper.h, modules/codec/a52.c: same as thedj ;)
parent a4ee4477
......@@ -2,7 +2,7 @@
* vlc_block_helper.h: Helper functions for data blocks management.
*****************************************************************************
* Copyright (C) 2003 VideoLAN
* $Id: vlc_block_helper.h,v 1.1 2003/09/30 20:23:03 gbazin Exp $
* $Id: vlc_block_helper.h,v 1.2 2003/09/30 20:36:46 gbazin Exp $
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
*
......@@ -61,19 +61,6 @@ static inline block_t *block_BytestreamFlush( block_bytestream_t *p_bytestream)
return p_bytestream->p_chain;
}
static inline mtime_t block_BytestreamPTS( block_bytestream_t *p_bytestream )
{
while( p_bytestream->p_chain != p_bytestream->p_block )
{
block_t *p_next;
p_next = p_bytestream->p_chain->p_next;
p_bytestream->p_chain->pf_release( p_bytestream->p_chain );
p_bytestream->p_chain = p_next;
}
return p_bytestream->p_chain;
}
static inline int block_SkipByte( block_bytestream_t *p_bytestream )
{
/* Most common case first */
......
......@@ -2,7 +2,7 @@
* a52.c: A/52 basic parser
*****************************************************************************
* Copyright (C) 2001-2002 VideoLAN
* $Id: a52.c,v 1.24 2003/09/30 20:23:03 gbazin Exp $
* $Id: a52.c,v 1.25 2003/09/30 20:36:46 gbazin Exp $
*
* Authors: Stphane Borel <stef@via.ecp.fr>
* Christophe Massiot <massiot@via.ecp.fr>
......@@ -361,7 +361,7 @@ static int EndDecoder( decoder_t *p_dec )
sout_InputDelete( p_dec->p_sys->p_sout_input );
}
if( p_dec->p_sys->p_chain ) block_ChainRelease( p_sys->p_chain );
if( p_dec->p_sys->p_chain ) block_ChainRelease( p_dec->p_sys->p_chain );
free( p_dec->p_sys );
......@@ -534,7 +534,7 @@ static int SendOutBuffer( decoder_t *p_dec )
p_sys->p_aout_buffer = NULL;
}
p_dec->p_sys->p_out_buffer = NULL;
p_sys->p_out_buffer = NULL;
return VLC_SUCCESS;
}
......
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