aboutsummaryrefslogtreecommitdiff
path: root/decoder/ixheaacd_aacdecoder.c
diff options
context:
space:
mode:
authorRamesh Katuri <ramesh.katuri@ittiam.com>2018-06-01 13:27:00 +0530
committerRay Essick <essick@google.com>2018-06-07 16:52:19 -0700
commitb3226ce6f80c78946aa3190cec158fb9852272ea (patch)
treef4e0df5cb15e791d60b23b54a710f3d4d608193a /decoder/ixheaacd_aacdecoder.c
parent8eb646f89b94cf6d0aa26e5bca39ba083a554965 (diff)
downloadlibxaac-b3226ce6f80c78946aa3190cec158fb9852272ea.tar.gz
Formatting changespie-dr1-devpie-dev
Formatting .c and .h files using clang-format Formatting .s files Bug: 80493357 Test: compare object sizes Change-Id: I38296083c9d2d566a6a2564db2e391e4b2bd43a9
Diffstat (limited to 'decoder/ixheaacd_aacdecoder.c')
-rw-r--r--decoder/ixheaacd_aacdecoder.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/decoder/ixheaacd_aacdecoder.c b/decoder/ixheaacd_aacdecoder.c
index 69d060c..8af03ee 100644
--- a/decoder/ixheaacd_aacdecoder.c
+++ b/decoder/ixheaacd_aacdecoder.c
@@ -647,9 +647,8 @@ WORD32 ixheaacd_aacdec_decodeframe(
it_bit_buff, ptr_ics_info, object_type,
aac_dec_handle->samples_per_frame, LEFT);
- if(temp!=0)
- {
- return temp;
+ if (temp != 0) {
+ return temp;
}
}
}
@@ -706,8 +705,9 @@ WORD32 ixheaacd_aacdec_decodeframe(
ixheaacd_extension_payload(it_bit_buff, cnt_bits);
}
- if (((object_type == AOT_ER_AAC_ELD) || (object_type == AOT_ER_AAC_LD))
- && (p_obj_exhaacplus_dec->aac_config.ld_decoder != 1)) {
+ if (((object_type == AOT_ER_AAC_ELD) ||
+ (object_type == AOT_ER_AAC_LD)) &&
+ (p_obj_exhaacplus_dec->aac_config.ld_decoder != 1)) {
if (it_bit_buff->cnt_bits) {
WORD32 alignment = it_bit_buff->bit_pos & 0x07;
it_bit_buff->cnt_bits = (it_bit_buff->cnt_bits + alignment) & 7;