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:
_______________________________________________
FFmpeg-soc mailing list
[email protected]
https://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-soc

Reply via email to