[FFmpeg-cvslog] r17861 - trunk/libavcodec/aac.c

alexc subversion
Fri Mar 6 23:37:21 CET 2009


Author: alexc
Date: Fri Mar  6 23:37:21 2009
New Revision: 17861

Log:
Re-indent after last commit.

Modified:
   trunk/libavcodec/aac.c

Modified: trunk/libavcodec/aac.c
==============================================================================
--- trunk/libavcodec/aac.c	Fri Mar  6 23:36:24 2009	(r17860)
+++ trunk/libavcodec/aac.c	Fri Mar  6 23:37:21 2009	(r17861)
@@ -1598,13 +1598,13 @@ static int parse_adts_frame_header(AACCo
         ac->m4ac.sample_rate     = hdr_info.sample_rate;
         ac->m4ac.sampling_index  = hdr_info.sampling_index;
         ac->m4ac.object_type     = hdr_info.object_type;
-    if (hdr_info.num_aac_frames == 1) {
-        if (!hdr_info.crc_absent)
-            skip_bits(gb, 16);
-    } else {
-        ff_log_missing_feature(ac->avccontext, "More than one AAC RDB per ADTS frame is", 0);
-        return -1;
-    }
+        if (hdr_info.num_aac_frames == 1) {
+            if (!hdr_info.crc_absent)
+                skip_bits(gb, 16);
+        } else {
+            ff_log_missing_feature(ac->avccontext, "More than one AAC RDB per ADTS frame is", 0);
+            return -1;
+        }
     }
     return size;
 }




More information about the ffmpeg-cvslog mailing list