[vlc-commits] aes3: Remove write only variable.
Hugo Beauzée-Luyssen
git at videolan.org
Mon Apr 16 10:43:04 CEST 2012
vlc | branch: master | Hugo Beauzée-Luyssen <beauze.h at gmail.com> | Thu Apr 12 14:29:05 2012 +0200| [6c7f5148ed73d00279dbe724f2622a17951b5d8e] | committer: Hugo Beauzée-Luyssen
aes3: Remove write only variable.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=6c7f5148ed73d00279dbe724f2622a17951b5d8e
---
modules/codec/aes3.c | 2 --
1 files changed, 0 insertions(+), 2 deletions(-)
diff --git a/modules/codec/aes3.c b/modules/codec/aes3.c
index 9565d03..9cd9a2b 100644
--- a/modules/codec/aes3.c
+++ b/modules/codec/aes3.c
@@ -290,7 +290,6 @@ static block_t *Parse( decoder_t *p_dec, int *pi_frame_length, int *pi_bits,
uint32_t h;
unsigned int i_size;
int i_channels;
- int i_id;
int i_bits;
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,
h = GetDWBE( p_block->p_buffer );
i_size = (h >> 16) & 0xffff;
i_channels = 2 + 2*( (h >> 14) & 0x03 );
- i_id = (h >> 6) & 0xff;
i_bits = 16 + 4*( (h >> 4)&0x03 );
if( AES3_HEADER_LEN + i_size != p_block->i_buffer || i_bits > 24 )
More information about the vlc-commits
mailing list