Updates from vendor to remedy issues exposed by new CTS tests
Bug: 77287124
Test: CTS DecoderTest, DecoderTest{AacDrc,XheAac}
@ Sanitizer fixes in libxaac
Fixes few integer overflow sanitizer errors
Progagate few errors
ENABLE_DRC macro is removed
AMMENDMENT1 macro is removed
Change-Id: Ic61163dfd6318bd4a00ed45e1295c819cb0f637b
@ Add support for audio pre-roll and DRC effect type
Also includes the following
MPEG-D DRC parameters related changes
USAC config switch changes
SBR config switch changes
Bug: 80133175
Change-Id: I0ab25641768cf523b66f7b0fcb4137429c1c4a77
@ Fixed trailing spaces
Change-Id: I32de0c9d3f7237e1fbf8dfef1cac485ef8458173
@ Replaced tabs
Change-Id: Ic741ee13d7b978b37edc27d087903caaa40b8d90
20 lines
928 B
C
20 lines
928 B
C
#ifndef IXHEAACD_RVLC_H
|
|
#define IXHEAACD_RVLC_H
|
|
void ixheaacd_rvlc_read(
|
|
ia_bit_buf_struct *itt_bit_buff,
|
|
ia_aac_dec_channel_info_struct *ptr_aac_dec_channel_info);
|
|
void ixheaacd_rvlc_dec(ia_aac_dec_channel_info_struct *ptr_aac_dec_channel_info,
|
|
ia_aac_dec_overlap_info *ptr_aac_dec_static_channel_info,
|
|
ia_bit_buf_struct *itt_bit_buff);
|
|
void ixheaacd_hcr_read(ia_bit_buf_struct *itt_bit_buff,
|
|
ia_aac_dec_channel_info_struct *ptr_aac_dec_channel_info,
|
|
WORD32 ele_type);
|
|
|
|
void ixheaacd_carry_bit_branch_val(UWORD8 carry_bit, UWORD32 tree_node,
|
|
UWORD32 *branch_val, UWORD32 *branch_node);
|
|
|
|
VOID ixheaacd_huff_sfb_table(WORD32 it_bit_buff, WORD16 *huff_index,
|
|
WORD16 *len, const UWORD16 *code_book_tbl,
|
|
const UWORD32 *idx_table);
|
|
|
|
#endif
|