diff options
author | Alex Converse <alex.converse@gmail.com> | 2009-03-06 22:37:21 +0000 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2009-03-06 22:37:21 +0000 |
commit | 7d87e2ceacc551dc1510282824c97ea457fd655d (patch) | |
tree | b77257b9e1d3ac2a2f69b0b7f93eec3b0b9c8c10 /libavcodec/aac.c | |
parent | 51741a82c3265cc549baa0a342450f1dac8581a1 (diff) | |
download | ffmpeg-7d87e2ceacc551dc1510282824c97ea457fd655d.tar.gz |
Re-indent after last commit.
Originally committed as revision 17861 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/aac.c')
-rw-r--r-- | libavcodec/aac.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libavcodec/aac.c b/libavcodec/aac.c index e10905eccf..9a3b3d7ba8 100644 --- a/libavcodec/aac.c +++ b/libavcodec/aac.c @@ -1598,13 +1598,13 @@ static int parse_adts_frame_header(AACContext * ac, GetBitContext * gb) { 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; } |