summaryrefslogtreecommitdiff
path: root/libavcodec/aacdec.c
diff options
context:
space:
mode:
authorAlex Converse <alex.converse@gmail.com>2010-06-21 04:10:18 +0000
committerAlex Converse <alex.converse@gmail.com>2010-06-21 04:10:18 +0000
commitd4e355d5c9cdfd9a7a17c20a7a748cefbcafce70 (patch)
treecf83da844c520744ba3b72bff6dcdb8b39d96b20 /libavcodec/aacdec.c
parented99e54d67bd5fa05423cb60c53453e7c27e5742 (diff)
aacdec: cosmetics: whitespace
Originally committed as revision 23675 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/aacdec.c')
-rw-r--r--libavcodec/aacdec.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/libavcodec/aacdec.c b/libavcodec/aacdec.c
index b10749ec08..500c66996b 100644
--- a/libavcodec/aacdec.c
+++ b/libavcodec/aacdec.c
@@ -2007,10 +2007,11 @@ static int aac_decode_frame(AVCodecContext *avctx, void *data,
elem_id = get_bits(&gb, 4);
if (elem_type < TYPE_DSE) {
- if (!(che=get_che(ac, elem_type, elem_id))) {
- av_log(ac->avctx, AV_LOG_ERROR, "channel element %d.%d is not allocated\n", elem_type, elem_id);
- return -1;
- }
+ if (!(che=get_che(ac, elem_type, elem_id))) {
+ av_log(ac->avctx, AV_LOG_ERROR, "channel element %d.%d is not allocated\n",
+ elem_type, elem_id);
+ return -1;
+ }
samples = 1024;
}