[FFmpeg-soc] [soc]: r2076 - aac/aac.c
andoma
subversion at mplayerhq.hu
Thu Apr 3 08:48:13 CEST 2008
Author: andoma
Date: Thu Apr 3 08:48:13 2008
New Revision: 2076
Log:
Use skip_bits() instead of get_bits() where appropriate.
Modified:
aac/aac.c
Modified: aac/aac.c
==============================================================================
--- aac/aac.c (original)
+++ aac/aac.c Thu Apr 3 08:48:13 2008
@@ -783,8 +783,8 @@ static int GASpecificConfig(AACContext *
if (ext) {
switch (ac->m4ac.object_type) {
case AOT_ER_BSAC:
- get_bits(gb, 5); // numOfSubFrame
- get_bits(gb, 11); // layer_length
+ skip_bits(gb, 5); // numOfSubFrame
+ skip_bits(gb, 11); // layer_length
break;
case AOT_ER_AAC_LC:
case AOT_ER_AAC_LTP:
More information about the FFmpeg-soc
mailing list