Commit 6c7f5148 authored by Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen

aes3: Remove write only variable.

parent d70ea1fe
...@@ -290,7 +290,6 @@ static block_t *Parse( decoder_t *p_dec, int *pi_frame_length, int *pi_bits, ...@@ -290,7 +290,6 @@ static block_t *Parse( decoder_t *p_dec, int *pi_frame_length, int *pi_bits,
uint32_t h; uint32_t h;
unsigned int i_size; unsigned int i_size;
int i_channels; int i_channels;
int i_id;
int i_bits; int i_bits;
if( !pp_block || !*pp_block ) return NULL; if( !pp_block || !*pp_block ) return NULL;
...@@ -331,7 +330,6 @@ static block_t *Parse( decoder_t *p_dec, int *pi_frame_length, int *pi_bits, ...@@ -331,7 +330,6 @@ static block_t *Parse( decoder_t *p_dec, int *pi_frame_length, int *pi_bits,
h = GetDWBE( p_block->p_buffer ); h = GetDWBE( p_block->p_buffer );
i_size = (h >> 16) & 0xffff; i_size = (h >> 16) & 0xffff;
i_channels = 2 + 2*( (h >> 14) & 0x03 ); i_channels = 2 + 2*( (h >> 14) & 0x03 );
i_id = (h >> 6) & 0xff;
i_bits = 16 + 4*( (h >> 4)&0x03 ); i_bits = 16 + 4*( (h >> 4)&0x03 );
if( AES3_HEADER_LEN + i_size != p_block->i_buffer || i_bits > 24 ) if( AES3_HEADER_LEN + i_size != p_block->i_buffer || i_bits > 24 )
......
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