Coverage Report

Created: 2025-08-03 06:55

/src/libxaac/decoder/ixheaacd_latmdemux.c
Line
Count
Source (jump to first uncovered line)
1
/******************************************************************************
2
 *                                                                            *
3
 * Copyright (C) 2018 The Android Open Source Project
4
 *
5
 * Licensed under the Apache License, Version 2.0 (the "License");
6
 * you may not use this file except in compliance with the License.
7
 * You may obtain a copy of the License at:
8
 *
9
 * http://www.apache.org/licenses/LICENSE-2.0
10
 *
11
 * Unless required by applicable law or agreed to in writing, software
12
 * distributed under the License is distributed on an "AS IS" BASIS,
13
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
 * See the License for the specific language governing permissions and
15
 * limitations under the License.
16
 *
17
 *****************************************************************************
18
 * Originally developed and contributed by Ittiam Systems Pvt. Ltd, Bangalore
19
*/
20
#include <string.h>
21
#include "ixheaacd_sbr_common.h"
22
#include "ixheaac_type_def.h"
23
#include "ixheaac_constants.h"
24
#include "ixheaac_basic_ops32.h"
25
#include "ixheaac_basic_ops16.h"
26
#include "ixheaac_basic_ops40.h"
27
#include "ixheaac_basic_ops.h"
28
#include "ixheaacd_bitbuffer.h"
29
30
#include "ixheaac_basic_op.h"
31
#include "ixheaacd_intrinsics.h"
32
33
#include "ixheaacd_defines.h"
34
35
#include "ixheaacd_aac_rom.h"
36
37
#include "ixheaacd_definitions.h"
38
39
#include "ixheaacd_error_codes.h"
40
41
#include "ixheaacd_pulsedata.h"
42
43
#include "ixheaacd_pns.h"
44
#include "ixheaacd_drc_data_struct.h"
45
46
#include "ixheaacd_lt_predict.h"
47
#include "ixheaacd_cnst.h"
48
#include "ixheaacd_ec_defines.h"
49
#include "ixheaacd_ec_struct_def.h"
50
#include "ixheaacd_channelinfo.h"
51
#include "ixheaacd_drc_dec.h"
52
#include "ixheaacd_sbrdecoder.h"
53
#include "ixheaacd_block.h"
54
#include "ixheaacd_channel.h"
55
56
#include "ixheaacd_sbr_payload.h"
57
#include "ixheaacd_common_rom.h"
58
#include "ixheaacd_sbrdecsettings.h"
59
#include "ixheaacd_sbr_scale.h"
60
#include "ixheaacd_env_extr_part.h"
61
#include "ixheaacd_sbr_rom.h"
62
#include "ixheaacd_stereo.h"
63
#include "ixheaacd_lpp_tran.h"
64
#include "ixheaacd_hybrid.h"
65
#include "ixheaacd_ps_dec.h"
66
67
#include "ixheaacd_env_extr.h"
68
#include "ixheaacd_adts.h"
69
#include "ixheaacd_audioobjtypes.h"
70
#include "ixheaacd_memory_standards.h"
71
72
#include "ixheaacd_latmdemux.h"
73
74
#include "ixheaacd_aacdec.h"
75
#include "ixheaacd_config.h"
76
#include "ixheaacd_qmf_dec.h"
77
#include "ixheaacd_mps_polyphase.h"
78
#include "ixheaacd_mps_macro_def.h"
79
#include "ixheaacd_mps_struct_def.h"
80
#include "ixheaacd_mps_res_rom.h"
81
#include "ixheaacd_mps_aac_struct.h"
82
#include "ixheaacd_mps_dec.h"
83
#include "ixheaacd_struct_def.h"
84
85
#include "ixheaacd_multichannel.h"
86
#include "ixheaacd_headerdecode.h"
87
#include "ixheaac_error_standards.h"
88
89
WORD32 ixheaacd_latm_au_chunk_length_info(
90
286k
    struct ia_bit_buf_struct *it_bit_buff) {
91
286k
  UWORD8 reading_done;
92
286k
  WORD32 len = 0;
93
94
323k
  do {
95
323k
    UWORD32 tmp = ixheaacd_read_bits_buf(it_bit_buff, 8);
96
323k
    reading_done = (tmp < 255);
97
98
323k
    len += tmp;
99
100
323k
  } while (reading_done == 0);
101
102
286k
  len <<= 3;
103
104
286k
  return len;
105
286k
}
106
107
WORD32 ixheaacd_latm_payload_length_info(struct ia_bit_buf_struct *it_bit_buff,
108
283k
                                         ixheaacd_latm_struct *latm_element) {
109
283k
  WORD32 error_code = AAC_DEC_OK;
110
283k
  UWORD32 prog, lay;
111
112
283k
  if (latm_element->all_streams_same_time_framing == 1) {
113
567k
    for (prog = 0; prog < latm_element->num_program; prog++) {
114
570k
      for (lay = 0; lay < latm_element->num_layer; lay++) {
115
286k
        ixheaacd_latm_layer_info *layer_info =
116
286k
            &latm_element->layer_info[prog][lay];
117
118
286k
        switch (layer_info->frame_len_type) {
119
286k
          case 0:
120
286k
            layer_info->frame_len_bits =
121
286k
                ixheaacd_latm_au_chunk_length_info(it_bit_buff);
122
286k
            if (layer_info->frame_len_bits % 8 != 0) {
123
0
              error_code = IA_XHEAAC_DEC_EXE_FATAL_INVALID_LOAS_HEADER;
124
0
              return error_code;
125
0
            }
126
127
286k
            latm_element->frame_length = layer_info->frame_len_bits >> 3;
128
286k
            latm_element->frame_length +=
129
286k
                (it_bit_buff->size - it_bit_buff->cnt_bits) >> 3;
130
286k
            break;
131
132
0
          default:
133
0
            error_code = IA_XHEAAC_DEC_EXE_FATAL_INVALID_LOAS_HEADER;
134
0
            return error_code;
135
286k
        }
136
286k
      }
137
283k
    }
138
283k
  } else {
139
10
    error_code = IA_XHEAAC_DEC_EXE_FATAL_INVALID_LOAS_HEADER;
140
10
    return error_code;
141
10
  }
142
143
283k
  return (error_code);
144
283k
}
145
146
117
static UWORD32 ixheaacd_latm_get_value(ia_bit_buf_struct *it_bit_buff) {
147
117
  UWORD32 bytes_read;
148
149
117
  bytes_read = ixheaacd_read_bits_buf(it_bit_buff, 2) + 1;
150
151
117
  if (bytes_read <= 3)
152
89
    return ixheaacd_read_bits_buf(it_bit_buff, 8 * bytes_read);
153
28
  else
154
28
    return ixheaac_add32_sat(ixheaac_shl32_sat(ixheaacd_read_bits_buf(it_bit_buff, 24), 8),
155
28
                              ixheaacd_read_bits_buf(it_bit_buff, 8));
156
117
}
157
158
IA_ERRORCODE ixheaacd_latm_stream_mux_config(
159
    struct ia_bit_buf_struct *it_bit_buff, ixheaacd_latm_struct *latm_element,
160
    ia_aac_dec_state_struct *aac_state_struct,
161
212k
    ia_sampling_rate_info_struct *sample_rate_info) {
162
212k
  UWORD32 prog;
163
212k
  UWORD32 lay;
164
212k
  WORD32 bytes_consumed;
165
212k
  WORD32 audio_mux_version_a;
166
212k
  IA_ERRORCODE error_code = AAC_DEC_OK;
167
212k
  ixheaacd_latm_layer_info *layer_info = 0;
168
169
212k
  latm_element->audio_mux_version = ixheaacd_read_bits_buf(it_bit_buff, 1);
170
171
212k
  if (latm_element->audio_mux_version == 1)
172
84
    audio_mux_version_a = ixheaacd_read_bits_buf(it_bit_buff, 1);
173
212k
  else
174
212k
    audio_mux_version_a = 0;
175
176
212k
  if (audio_mux_version_a == 0) {
177
212k
    if (latm_element->audio_mux_version == 1) {
178
63
      ixheaacd_latm_get_value(it_bit_buff);/*tara_buf_fullness*/
179
63
    }
180
212k
    latm_element->all_streams_same_time_framing =
181
212k
        ixheaacd_read_bits_buf(it_bit_buff, 1);
182
183
212k
    latm_element->num_sub_frames = ixheaacd_read_bits_buf(it_bit_buff, 6) + 1;
184
185
212k
    if (latm_element->num_sub_frames != 1)
186
269
      return IA_XHEAAC_DEC_EXE_FATAL_INVALID_LOAS_HEADER;
187
188
212k
    latm_element->num_program = ixheaacd_read_bits_buf(it_bit_buff, 4) + 1;
189
190
212k
    if (latm_element->num_program > LATM_MAX_PROG) return IA_FATAL_ERROR;
191
192
411k
    for (prog = 0; prog < latm_element->num_program; prog++) {
193
212k
      latm_element->num_layer = ixheaacd_read_bits_buf(it_bit_buff, 3) + 1;
194
195
414k
      for (lay = 0; lay < latm_element->num_layer; lay++) {
196
215k
        layer_info = &latm_element->layer_info[prog][lay];
197
215k
        layer_info->frame_len_bits = 0;
198
199
215k
        if ((prog == 0) && (lay == 0)) {
200
212k
          WORD32 asc_len, pos;
201
202
212k
          latm_element->use_same_config = 0;
203
204
212k
          asc_len = (latm_element->audio_mux_version == 1)
205
212k
                        ? ixheaacd_latm_get_value(it_bit_buff)
206
212k
                        : 0;
207
212k
          pos = it_bit_buff->size - it_bit_buff->cnt_bits;
208
209
212k
          if (asc_len > it_bit_buff->size - 106 || asc_len > 2592 ||
210
212k
              asc_len < 0) {
211
11
            return IA_XHEAAC_DEC_INIT_FATAL_DEC_INIT_FAIL;
212
11
          }
213
214
212k
          if ((error_code = ixheaacd_ga_hdr_dec(
215
212k
                   aac_state_struct, it_bit_buff->cnt_bits, &bytes_consumed,
216
212k
                   sample_rate_info, it_bit_buff)))
217
13.3k
            return (error_code);
218
219
199k
          if (asc_len) {
220
17
            asc_len -= (it_bit_buff->size - it_bit_buff->cnt_bits) - pos;
221
17
            ixheaacd_read_bidirection(it_bit_buff, asc_len);
222
17
          }
223
224
199k
          layer_info->asc.aot = aac_state_struct->audio_object_type;
225
199k
          layer_info->asc.channel_config = aac_state_struct->ch_config;
226
199k
          layer_info->asc.samples_per_frame = aac_state_struct->frame_len_flag;
227
199k
          layer_info->asc.sampling_freq = aac_state_struct->sampling_rate;
228
199k
          layer_info->asc.samples_per_frame = aac_state_struct->frame_length;
229
199k
        } else {
230
3.10k
          latm_element->use_same_config =
231
3.10k
              ixheaacd_read_bits_buf(it_bit_buff, 1);
232
233
3.10k
          if (latm_element->use_same_config && (lay > 0)) {
234
2.76k
            layer_info->asc = latm_element->layer_info[prog][lay - 1].asc;
235
2.76k
          } else {
236
335
            if ((error_code = ixheaacd_ga_hdr_dec(
237
335
                     aac_state_struct, it_bit_buff->cnt_bits, &bytes_consumed,
238
335
                     sample_rate_info, it_bit_buff)))
239
314
              return (error_code);
240
335
          }
241
3.10k
        }
242
243
202k
        layer_info->frame_len_type = ixheaacd_read_bits_buf(it_bit_buff, 3);
244
245
202k
        switch (layer_info->frame_len_type) {
246
201k
          case 0:
247
201k
            layer_info->buffer_fullness =
248
201k
                ixheaacd_read_bits_buf(it_bit_buff, 8);
249
250
201k
            if (!latm_element->all_streams_same_time_framing) {
251
248
              if ((lay > 0) && layer_info->asc.aot == AOT_AAC_SCAL) {
252
0
              }
253
248
            }
254
201k
            break;
255
256
35
          case 1:
257
35
            latm_element->frame_length = ixheaacd_read_bits_buf(it_bit_buff, 9);
258
100
          default:
259
100
            return IA_XHEAAC_DEC_EXE_FATAL_INVALID_LOAS_HEADER;
260
202k
        }
261
202k
      }
262
212k
    }
263
264
198k
    latm_element->other_data_present = ixheaacd_read_bits_buf(it_bit_buff, 1);
265
266
198k
    if (latm_element->other_data_present) {
267
6.54k
      if (latm_element->audio_mux_version == 1) {
268
18
        latm_element->other_data_length = ixheaacd_latm_get_value(it_bit_buff);
269
6.52k
      } else {
270
6.52k
        UWORD32 other_data_len;
271
6.52k
        latm_element->other_data_length = 0;
272
6.75k
        do {
273
6.75k
          other_data_len = ixheaacd_read_bits_buf(it_bit_buff, 1);
274
6.75k
          latm_element->other_data_length <<= 8;
275
6.75k
          latm_element->other_data_length +=
276
6.75k
              ixheaacd_read_bits_buf(it_bit_buff, 8);
277
6.75k
          if (latm_element->other_data_length > (UWORD32)it_bit_buff->cnt_bits)
278
32
            return IA_FATAL_ERROR;
279
6.75k
        } while (other_data_len);
280
6.52k
      }
281
6.54k
    }
282
283
198k
    latm_element->crc_check_present = ixheaacd_read_bits_buf(it_bit_buff, 1);
284
285
198k
    if (latm_element->crc_check_present) {
286
72.1k
      latm_element->crc_check_sum = ixheaacd_read_bits_buf(it_bit_buff, 8);
287
72.1k
    }
288
198k
  } else {
289
21
    error_code = IA_XHEAAC_DEC_EXE_FATAL_INVALID_LOAS_HEADER;
290
21
  }
291
198k
  return (error_code);
292
212k
}
293
294
IA_ERRORCODE ixheaacd_latm_audio_mux_element(
295
    struct ia_bit_buf_struct *it_bit_buff, ixheaacd_latm_struct *latm_element,
296
    ia_aac_dec_state_struct *aac_state_struct,
297
298k
    ia_sampling_rate_info_struct *sample_rate_info) {
298
298k
  UWORD32 i;
299
298k
  IA_ERRORCODE error_code = AAC_DEC_OK;
300
301
298k
  ixheaacd_read_bits_buf(it_bit_buff, 13);
302
303
298k
  latm_element->use_same_stream_mux = ixheaacd_read_bits_buf(it_bit_buff, 1);
304
305
298k
  if (!latm_element->use_same_stream_mux) {
306
212k
    if ((error_code = ixheaacd_latm_stream_mux_config(
307
212k
             it_bit_buff, latm_element, aac_state_struct, sample_rate_info))) {
308
14.1k
      return (error_code);
309
14.1k
    }
310
212k
  }
311
312
568k
  for (i = 0; i < latm_element->num_sub_frames; i++) {
313
283k
    if ((error_code =
314
283k
             ixheaacd_latm_payload_length_info(it_bit_buff, latm_element))) {
315
10
      if (error_code != 0) return (error_code);
316
10
    }
317
283k
  }
318
319
284k
  return (error_code);
320
284k
}