| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | /* | ||
| 2 | * AC-3 parser | ||
| 3 | * Copyright (c) 2003 Fabrice Bellard | ||
| 4 | * Copyright (c) 2003 Michael Niedermayer | ||
| 5 | * | ||
| 6 | * This file is part of FFmpeg. | ||
| 7 | * | ||
| 8 | * FFmpeg is free software; you can redistribute it and/or | ||
| 9 | * modify it under the terms of the GNU Lesser General Public | ||
| 10 | * License as published by the Free Software Foundation; either | ||
| 11 | * version 2.1 of the License, or (at your option) any later version. | ||
| 12 | * | ||
| 13 | * FFmpeg is distributed in the hope that it will be useful, | ||
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
| 16 | * Lesser General Public License for more details. | ||
| 17 | * | ||
| 18 | * You should have received a copy of the GNU Lesser General Public | ||
| 19 | * License along with FFmpeg; if not, write to the Free Software | ||
| 20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
| 21 | */ | ||
| 22 | |||
| 23 | #include "config_components.h" | ||
| 24 | |||
| 25 | #include "libavutil/channel_layout.h" | ||
| 26 | #include "libavutil/mem.h" | ||
| 27 | #include "parser.h" | ||
| 28 | #include "ac3defs.h" | ||
| 29 | #include "ac3tab.h" | ||
| 30 | #include "ac3_parser.h" | ||
| 31 | #include "ac3_parser_internal.h" | ||
| 32 | #include "aac_ac3_parser.h" | ||
| 33 | #include "get_bits.h" | ||
| 34 | #include "parser_internal.h" | ||
| 35 | |||
| 36 | |||
| 37 | #define AC3_HEADER_SIZE 7 | ||
| 38 | |||
| 39 | #if CONFIG_AC3_PARSER | ||
| 40 | |||
| 41 | static const uint8_t eac3_blocks[4] = { | ||
| 42 | 1, 2, 3, 6 | ||
| 43 | }; | ||
| 44 | |||
| 45 | /** | ||
| 46 | * Table for center mix levels | ||
| 47 | * reference: Section 5.4.2.4 cmixlev | ||
| 48 | */ | ||
| 49 | static const uint8_t center_levels[4] = { 4, 5, 6, 5 }; | ||
| 50 | |||
| 51 | /** | ||
| 52 | * Table for surround mix levels | ||
| 53 | * reference: Section 5.4.2.5 surmixlev | ||
| 54 | */ | ||
| 55 | static const uint8_t surround_levels[4] = { 4, 6, 7, 6 }; | ||
| 56 | |||
| 57 | 8527 | int ff_ac3_find_syncword(const uint8_t *buf, int buf_size) | |
| 58 | { | ||
| 59 | int i; | ||
| 60 | |||
| 61 |
2/2✓ Branch 0 taken 9924 times.
✓ Branch 1 taken 11 times.
|
9935 | for (i = 1; i < buf_size; i += 2) { |
| 62 |
3/4✓ Branch 0 taken 1400 times.
✓ Branch 1 taken 8524 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 1400 times.
|
9924 | if (buf[i] == 0x77 || buf[i] == 0x0B) { |
| 63 |
2/2✓ Branch 0 taken 8516 times.
✓ Branch 1 taken 8 times.
|
8524 | if ((buf[i] ^ buf[i-1]) == (0x77 ^ 0x0B)) { |
| 64 | 8516 | i--; | |
| 65 | 8516 | break; | |
| 66 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 8 times.
|
8 | } else if ((buf[i] ^ buf[i+1]) == (0x77 ^ 0x0B)) { |
| 67 | ✗ | break; | |
| 68 | } | ||
| 69 | } | ||
| 70 | } | ||
| 71 |
2/2✓ Branch 0 taken 11 times.
✓ Branch 1 taken 8516 times.
|
8527 | if (i >= buf_size) |
| 72 | 11 | return AVERROR_INVALIDDATA; | |
| 73 | |||
| 74 | 8516 | return i; | |
| 75 | } | ||
| 76 | |||
| 77 | /** | ||
| 78 | * Parse the 'sync info' and 'bit stream info' from the AC-3 bitstream. | ||
| 79 | * GetBitContext within AC3DecodeContext must point to | ||
| 80 | * the start of the synchronized AC-3 bitstream. | ||
| 81 | */ | ||
| 82 | 15022 | static int ac3_parse_header(GetBitContext *gbc, AC3HeaderInfo *hdr) | |
| 83 | { | ||
| 84 | /* read the rest of the bsi. read twice for dual mono mode. */ | ||
| 85 |
4/4✓ Branch 0 taken 18692 times.
✓ Branch 1 taken 17028 times.
✓ Branch 2 taken 20698 times.
✓ Branch 3 taken 15022 times.
|
35720 | for (int i = 0; i < (hdr->channel_mode ? 1 : 2); i++) { |
| 86 | 20698 | hdr->dialog_normalization[i] = -get_bits(gbc, 5); | |
| 87 | 20698 | hdr->compression_exists[i] = get_bits1(gbc); | |
| 88 |
2/2✓ Branch 0 taken 7709 times.
✓ Branch 1 taken 12989 times.
|
20698 | if (hdr->compression_exists[i]) |
| 89 | 7709 | hdr->heavy_dynamic_range[i] = get_bits(gbc, 8); | |
| 90 |
2/2✓ Branch 1 taken 928 times.
✓ Branch 2 taken 19770 times.
|
20698 | if (get_bits1(gbc)) |
| 91 | 928 | skip_bits(gbc, 8); //skip language code | |
| 92 |
2/2✓ Branch 1 taken 5463 times.
✓ Branch 2 taken 15235 times.
|
20698 | if (get_bits1(gbc)) |
| 93 | 5463 | skip_bits(gbc, 7); //skip audio production information | |
| 94 | } | ||
| 95 | |||
| 96 | 15022 | skip_bits(gbc, 2); //skip copyright bit and original bitstream bit | |
| 97 | |||
| 98 | /* skip the timecodes or parse the Alternate Bit Stream Syntax */ | ||
| 99 |
2/2✓ Branch 0 taken 13492 times.
✓ Branch 1 taken 1530 times.
|
15022 | if (hdr->bitstream_id != 6) { |
| 100 |
2/2✓ Branch 1 taken 1736 times.
✓ Branch 2 taken 11756 times.
|
13492 | if (get_bits1(gbc)) |
| 101 | 1736 | skip_bits(gbc, 14); //skip timecode1 | |
| 102 |
2/2✓ Branch 1 taken 1548 times.
✓ Branch 2 taken 11944 times.
|
13492 | if (get_bits1(gbc)) |
| 103 | 1548 | skip_bits(gbc, 14); //skip timecode2 | |
| 104 | } else { | ||
| 105 |
2/2✓ Branch 1 taken 844 times.
✓ Branch 2 taken 686 times.
|
1530 | if (get_bits1(gbc)) { |
| 106 | 844 | hdr->preferred_downmix = get_bits(gbc, 2); | |
| 107 | 844 | hdr->center_mix_level_ltrt = get_bits(gbc, 3); | |
| 108 | 844 | hdr->surround_mix_level_ltrt = av_clip(get_bits(gbc, 3), 3, 7); | |
| 109 | 844 | hdr->center_mix_level = get_bits(gbc, 3); | |
| 110 | 844 | hdr->surround_mix_level = av_clip(get_bits(gbc, 3), 3, 7); | |
| 111 | } | ||
| 112 |
2/2✓ Branch 1 taken 830 times.
✓ Branch 2 taken 700 times.
|
1530 | if (get_bits1(gbc)) { |
| 113 | 830 | hdr->dolby_surround_ex_mode = get_bits(gbc, 2); | |
| 114 | 830 | hdr->dolby_headphone_mode = get_bits(gbc, 2); | |
| 115 | 830 | skip_bits(gbc, 10); // skip adconvtyp (1), xbsi2 (8), encinfo (1) | |
| 116 | } | ||
| 117 | } | ||
| 118 | |||
| 119 | /* skip additional bitstream info */ | ||
| 120 |
2/2✓ Branch 1 taken 1696 times.
✓ Branch 2 taken 13326 times.
|
15022 | if (get_bits1(gbc)) { |
| 121 | 1696 | int i = get_bits(gbc, 6); | |
| 122 | do { | ||
| 123 | 45896 | skip_bits(gbc, 8); | |
| 124 |
2/2✓ Branch 0 taken 44200 times.
✓ Branch 1 taken 1696 times.
|
45896 | } while (i--); |
| 125 | } | ||
| 126 | |||
| 127 | 15022 | return 0; | |
| 128 | } | ||
| 129 | |||
| 130 | 110216 | static int eac3_parse_header(GetBitContext *gbc, AC3HeaderInfo *hdr) | |
| 131 | { | ||
| 132 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 110216 times.
|
110216 | if (hdr->frame_type == EAC3_FRAME_TYPE_RESERVED) |
| 133 | ✗ | return AC3_PARSE_ERROR_FRAME_TYPE; | |
| 134 |
2/2✓ Branch 0 taken 9100 times.
✓ Branch 1 taken 101116 times.
|
110216 | if (hdr->substreamid) |
| 135 | 9100 | return AC3_PARSE_ERROR_FRAME_TYPE; | |
| 136 | |||
| 137 | 101116 | skip_bits(gbc, 5); // skip bitstream id | |
| 138 | |||
| 139 | /* volume control params */ | ||
| 140 |
4/4✓ Branch 0 taken 200040 times.
✓ Branch 1 taken 3288 times.
✓ Branch 2 taken 102212 times.
✓ Branch 3 taken 101116 times.
|
203328 | for (int i = 0; i < (hdr->channel_mode ? 1 : 2); i++) { |
| 141 | 102212 | hdr->dialog_normalization[i] = -get_bits(gbc, 5); | |
| 142 | 102212 | hdr->compression_exists[i] = get_bits1(gbc); | |
| 143 |
2/2✓ Branch 0 taken 100127 times.
✓ Branch 1 taken 2085 times.
|
102212 | if (hdr->compression_exists[i]) |
| 144 | 100127 | hdr->heavy_dynamic_range[i] = get_bits(gbc, 8); | |
| 145 | } | ||
| 146 | |||
| 147 | /* dependent stream channel map */ | ||
| 148 |
2/2✓ Branch 0 taken 1058 times.
✓ Branch 1 taken 100058 times.
|
101116 | if (hdr->frame_type == EAC3_FRAME_TYPE_DEPENDENT) { |
| 149 | 1058 | hdr->channel_map_present = get_bits1(gbc); | |
| 150 |
2/2✓ Branch 0 taken 744 times.
✓ Branch 1 taken 314 times.
|
1058 | if (hdr->channel_map_present) { |
| 151 | 744 | int64_t channel_layout = 0; | |
| 152 | 744 | int channel_map = get_bits(gbc, 16); | |
| 153 | |||
| 154 |
2/2✓ Branch 0 taken 11904 times.
✓ Branch 1 taken 744 times.
|
12648 | for (int i = 0; i < 16; i++) |
| 155 |
2/2✓ Branch 0 taken 2242 times.
✓ Branch 1 taken 9662 times.
|
11904 | if (channel_map & (1 << (EAC3_MAX_CHANNELS - i - 1))) |
| 156 | 2242 | channel_layout |= ff_eac3_custom_channel_map_locations[i][1]; | |
| 157 | |||
| 158 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 744 times.
|
744 | if (av_popcount64(channel_layout) > EAC3_MAX_CHANNELS) { |
| 159 | ✗ | return AC3_PARSE_ERROR_CHANNEL_MAP; | |
| 160 | } | ||
| 161 | 744 | hdr->channel_map = channel_map; | |
| 162 | } | ||
| 163 | } | ||
| 164 | |||
| 165 | /* mixing metadata */ | ||
| 166 |
2/2✓ Branch 1 taken 93528 times.
✓ Branch 2 taken 7588 times.
|
101116 | if (get_bits1(gbc)) { |
| 167 | /* center and surround mix levels */ | ||
| 168 |
2/2✓ Branch 0 taken 488 times.
✓ Branch 1 taken 93040 times.
|
93528 | if (hdr->channel_mode > AC3_CHMODE_STEREO) { |
| 169 | 488 | hdr->preferred_downmix = get_bits(gbc, 2); | |
| 170 |
1/2✓ Branch 0 taken 488 times.
✗ Branch 1 not taken.
|
488 | if (hdr->channel_mode & 1) { |
| 171 | /* if three front channels exist */ | ||
| 172 | 488 | hdr->center_mix_level_ltrt = get_bits(gbc, 3); | |
| 173 | 488 | hdr->center_mix_level = get_bits(gbc, 3); | |
| 174 | } | ||
| 175 |
1/2✓ Branch 0 taken 488 times.
✗ Branch 1 not taken.
|
488 | if (hdr->channel_mode & 4) { |
| 176 | /* if a surround channel exists */ | ||
| 177 | 488 | hdr->surround_mix_level_ltrt = av_clip(get_bits(gbc, 3), 3, 7); | |
| 178 | 488 | hdr->surround_mix_level = av_clip(get_bits(gbc, 3), 3, 7); | |
| 179 | } | ||
| 180 | } | ||
| 181 | |||
| 182 | /* lfe mix level */ | ||
| 183 |
4/4✓ Branch 0 taken 488 times.
✓ Branch 1 taken 93040 times.
✓ Branch 3 taken 484 times.
✓ Branch 4 taken 4 times.
|
93528 | if (hdr->lfe_on && (hdr->lfe_mix_level_exists = get_bits1(gbc))) { |
| 184 | 484 | hdr->lfe_mix_level = get_bits(gbc, 5); | |
| 185 | } | ||
| 186 | |||
| 187 | /* info for mixing with other streams and substreams */ | ||
| 188 |
2/2✓ Branch 0 taken 93524 times.
✓ Branch 1 taken 4 times.
|
93528 | if (hdr->frame_type == EAC3_FRAME_TYPE_INDEPENDENT) { |
| 189 |
3/4✓ Branch 0 taken 187048 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 93524 times.
✓ Branch 3 taken 93524 times.
|
187048 | for (int i = 0; i < (hdr->channel_mode ? 1 : 2); i++) { |
| 190 | // TODO: apply program scale factor | ||
| 191 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 93524 times.
|
93524 | if (get_bits1(gbc)) { |
| 192 | ✗ | skip_bits(gbc, 6); // skip program scale factor | |
| 193 | } | ||
| 194 | } | ||
| 195 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 93524 times.
|
93524 | if (get_bits1(gbc)) { |
| 196 | ✗ | skip_bits(gbc, 6); // skip external program scale factor | |
| 197 | } | ||
| 198 | /* skip mixing parameter data */ | ||
| 199 |
1/4✗ Branch 1 not taken.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✓ Branch 4 taken 93524 times.
|
93524 | switch(get_bits(gbc, 2)) { |
| 200 | ✗ | case 1: skip_bits(gbc, 5); break; | |
| 201 | ✗ | case 2: skip_bits(gbc, 12); break; | |
| 202 | ✗ | case 3: { | |
| 203 | ✗ | int mix_data_size = (get_bits(gbc, 5) + 2) << 3; | |
| 204 | ✗ | skip_bits_long(gbc, mix_data_size); | |
| 205 | ✗ | break; | |
| 206 | } | ||
| 207 | } | ||
| 208 | /* skip pan information for mono or dual mono source */ | ||
| 209 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 93524 times.
|
93524 | if (hdr->channel_mode < AC3_CHMODE_STEREO) { |
| 210 | ✗ | for (int i = 0; i < (hdr->channel_mode ? 1 : 2); i++) { | |
| 211 | ✗ | if (get_bits1(gbc)) { | |
| 212 | /* note: this is not in the ATSC A/52B specification | ||
| 213 | reference: ETSI TS 102 366 V1.1.1 | ||
| 214 | section: E.1.3.1.25 */ | ||
| 215 | ✗ | skip_bits(gbc, 8); // skip pan mean direction index | |
| 216 | ✗ | skip_bits(gbc, 6); // skip reserved paninfo bits | |
| 217 | } | ||
| 218 | } | ||
| 219 | } | ||
| 220 | /* skip mixing configuration information */ | ||
| 221 |
1/2✗ Branch 1 not taken.
✓ Branch 2 taken 93524 times.
|
93524 | if (get_bits1(gbc)) { |
| 222 | ✗ | for (int i = 0; i < hdr->num_blocks; i++) { | |
| 223 | ✗ | if (hdr->num_blocks == 1 || get_bits1(gbc)) { | |
| 224 | ✗ | skip_bits(gbc, 5); | |
| 225 | } | ||
| 226 | } | ||
| 227 | } | ||
| 228 | } | ||
| 229 | } | ||
| 230 | |||
| 231 | /* informational metadata */ | ||
| 232 |
2/2✓ Branch 1 taken 93812 times.
✓ Branch 2 taken 7304 times.
|
101116 | if (get_bits1(gbc)) { |
| 233 | 93812 | hdr->bitstream_mode = get_bits(gbc, 3); | |
| 234 | 93812 | skip_bits(gbc, 2); // skip copyright bit and original bitstream bit | |
| 235 |
2/2✓ Branch 0 taken 93324 times.
✓ Branch 1 taken 488 times.
|
93812 | if (hdr->channel_mode == AC3_CHMODE_STEREO) { |
| 236 | 93324 | hdr->dolby_surround_mode = get_bits(gbc, 2); | |
| 237 | 93324 | hdr->dolby_headphone_mode = get_bits(gbc, 2); | |
| 238 | } | ||
| 239 |
2/2✓ Branch 0 taken 488 times.
✓ Branch 1 taken 93324 times.
|
93812 | if (hdr->channel_mode >= AC3_CHMODE_2F2R) { |
| 240 | 488 | hdr->dolby_surround_ex_mode = get_bits(gbc, 2); | |
| 241 | } | ||
| 242 |
3/4✓ Branch 0 taken 187624 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 93812 times.
✓ Branch 3 taken 93812 times.
|
187624 | for (int i = 0; i < (hdr->channel_mode ? 1 : 2); i++) { |
| 243 |
1/2✓ Branch 1 taken 93812 times.
✗ Branch 2 not taken.
|
93812 | if (get_bits1(gbc)) { |
| 244 | 93812 | skip_bits(gbc, 8); // skip mix level, room type, and A/D converter type | |
| 245 | } | ||
| 246 | } | ||
| 247 |
1/2✓ Branch 0 taken 93812 times.
✗ Branch 1 not taken.
|
93812 | if (hdr->sr_code != EAC3_SR_CODE_REDUCED) { |
| 248 | 93812 | skip_bits1(gbc); // skip source sample rate code | |
| 249 | } | ||
| 250 | } | ||
| 251 | |||
| 252 | /* converter synchronization flag | ||
| 253 | If frames are less than six blocks, this bit should be turned on | ||
| 254 | once every 6 blocks to indicate the start of a frame set. | ||
| 255 | reference: RFC 4598, Section 2.1.3 Frame Sets */ | ||
| 256 |
4/4✓ Branch 0 taken 100054 times.
✓ Branch 1 taken 1062 times.
✓ Branch 2 taken 1531 times.
✓ Branch 3 taken 98523 times.
|
101116 | if (hdr->frame_type == EAC3_FRAME_TYPE_INDEPENDENT && hdr->num_blocks != 6) { |
| 257 | 1531 | skip_bits1(gbc); // skip converter synchronization flag | |
| 258 | } | ||
| 259 | |||
| 260 | /* original frame size code if this stream was converted from AC-3 */ | ||
| 261 |
2/2✓ Branch 0 taken 4 times.
✓ Branch 1 taken 101112 times.
|
101116 | if (hdr->frame_type == EAC3_FRAME_TYPE_AC3_CONVERT && |
| 262 |
2/4✓ Branch 0 taken 4 times.
✗ Branch 1 not taken.
✗ Branch 3 not taken.
✓ Branch 4 taken 4 times.
|
4 | (hdr->num_blocks == 6 || get_bits1(gbc))) { |
| 263 | ✗ | skip_bits(gbc, 6); // skip frame size code | |
| 264 | } | ||
| 265 | |||
| 266 | /* additional bitstream info */ | ||
| 267 |
2/2✓ Branch 1 taken 742 times.
✓ Branch 2 taken 100374 times.
|
101116 | if (get_bits1(gbc)) { |
| 268 | 742 | int addbsil = get_bits(gbc, 6); | |
| 269 |
2/2✓ Branch 0 taken 742 times.
✓ Branch 1 taken 742 times.
|
1484 | for (int i = 0; i < addbsil + 1; i++) { |
| 270 |
1/2✓ Branch 0 taken 742 times.
✗ Branch 1 not taken.
|
742 | if (i == 0) { |
| 271 | /* In this 8 bit chunk, the LSB is equal to flag_ec3_extension_type_a | ||
| 272 | which can be used to detect Atmos presence */ | ||
| 273 | 742 | skip_bits(gbc, 7); | |
| 274 | 742 | hdr->eac3_extension_type_a = get_bits1(gbc); | |
| 275 |
1/2✓ Branch 0 taken 742 times.
✗ Branch 1 not taken.
|
742 | if (hdr->eac3_extension_type_a) { |
| 276 | 742 | hdr->complexity_index_type_a = get_bits(gbc, 8); | |
| 277 | 742 | i++; | |
| 278 | } | ||
| 279 | } else { | ||
| 280 | ✗ | skip_bits(gbc, 8); // skip additional bit stream info | |
| 281 | } | ||
| 282 | } | ||
| 283 | } | ||
| 284 | |||
| 285 | 101116 | return 0; | |
| 286 | } | ||
| 287 | |||
| 288 | 191616 | int ff_ac3_parse_header(GetBitContext *gbc, AC3HeaderInfo *hdr) | |
| 289 | { | ||
| 290 | int frame_size_code; | ||
| 291 | |||
| 292 | 191616 | memset(hdr, 0, sizeof(*hdr)); | |
| 293 | |||
| 294 | 191616 | hdr->sync_word = get_bits(gbc, 16); | |
| 295 |
2/2✓ Branch 0 taken 55890 times.
✓ Branch 1 taken 135726 times.
|
191616 | if(hdr->sync_word != 0x0B77) |
| 296 | 55890 | return AC3_PARSE_ERROR_SYNC; | |
| 297 | |||
| 298 | /* read ahead to bsid to distinguish between AC-3 and E-AC-3 */ | ||
| 299 | 135726 | hdr->bitstream_id = show_bits_long(gbc, 29) & 0x1F; | |
| 300 |
2/2✓ Branch 0 taken 8336 times.
✓ Branch 1 taken 127390 times.
|
135726 | if(hdr->bitstream_id > 16) |
| 301 | 8336 | return AC3_PARSE_ERROR_BSID; | |
| 302 | |||
| 303 | 127390 | hdr->num_blocks = 6; | |
| 304 | 127390 | hdr->ac3_bit_rate_code = -1; | |
| 305 | |||
| 306 | /* set default mix levels */ | ||
| 307 | 127390 | hdr->center_mix_level = 5; // -4.5dB | |
| 308 | 127390 | hdr->surround_mix_level = 6; // -6.0dB | |
| 309 | |||
| 310 | /* set default dolby surround mode */ | ||
| 311 | 127390 | hdr->dolby_surround_mode = AC3_DSURMOD_NOTINDICATED; | |
| 312 | |||
| 313 |
2/2✓ Branch 0 taken 16858 times.
✓ Branch 1 taken 110532 times.
|
127390 | if(hdr->bitstream_id <= 10) { |
| 314 | /* Normal AC-3 */ | ||
| 315 | 16858 | hdr->crc1 = get_bits(gbc, 16); | |
| 316 | 16858 | hdr->sr_code = get_bits(gbc, 2); | |
| 317 |
2/2✓ Branch 0 taken 556 times.
✓ Branch 1 taken 16302 times.
|
16858 | if(hdr->sr_code == 3) |
| 318 | 556 | return AC3_PARSE_ERROR_SAMPLE_RATE; | |
| 319 | |||
| 320 | 16302 | frame_size_code = get_bits(gbc, 6); | |
| 321 |
2/2✓ Branch 0 taken 1280 times.
✓ Branch 1 taken 15022 times.
|
16302 | if(frame_size_code > 37) |
| 322 | 1280 | return AC3_PARSE_ERROR_FRAME_SIZE; | |
| 323 | |||
| 324 | 15022 | hdr->ac3_bit_rate_code = (frame_size_code >> 1); | |
| 325 | |||
| 326 | 15022 | skip_bits(gbc, 5); // skip bsid, already got it | |
| 327 | |||
| 328 | 15022 | hdr->bitstream_mode = get_bits(gbc, 3); | |
| 329 | 15022 | hdr->channel_mode = get_bits(gbc, 3); | |
| 330 | |||
| 331 |
2/2✓ Branch 0 taken 2412 times.
✓ Branch 1 taken 12610 times.
|
15022 | if(hdr->channel_mode == AC3_CHMODE_STEREO) { |
| 332 | 2412 | hdr->dolby_surround_mode = get_bits(gbc, 2); | |
| 333 | } else { | ||
| 334 |
4/4✓ Branch 0 taken 6842 times.
✓ Branch 1 taken 5768 times.
✓ Branch 2 taken 6067 times.
✓ Branch 3 taken 775 times.
|
12610 | if((hdr->channel_mode & 1) && hdr->channel_mode != AC3_CHMODE_MONO) |
| 335 | 6067 | hdr-> center_mix_level = center_levels[get_bits(gbc, 2)]; | |
| 336 |
2/2✓ Branch 0 taken 6109 times.
✓ Branch 1 taken 6501 times.
|
12610 | if(hdr->channel_mode & 4) |
| 337 | 6109 | hdr->surround_mix_level = surround_levels[get_bits(gbc, 2)]; | |
| 338 | } | ||
| 339 | 15022 | hdr->lfe_on = get_bits1(gbc); | |
| 340 | |||
| 341 | 15022 | hdr->sr_shift = FFMAX(hdr->bitstream_id, 8) - 8; | |
| 342 | 15022 | hdr->sample_rate = ff_ac3_sample_rate_tab[hdr->sr_code] >> hdr->sr_shift; | |
| 343 | 15022 | hdr->bit_rate = (ff_ac3_bitrate_tab[hdr->ac3_bit_rate_code] * 1000) >> hdr->sr_shift; | |
| 344 | 15022 | hdr->channels = ff_ac3_channels_tab[hdr->channel_mode] + hdr->lfe_on; | |
| 345 | 15022 | hdr->frame_size = ff_ac3_frame_size_tab[frame_size_code][hdr->sr_code] * 2; | |
| 346 | 15022 | hdr->frame_type = EAC3_FRAME_TYPE_AC3_CONVERT; //EAC3_FRAME_TYPE_INDEPENDENT; | |
| 347 | 15022 | hdr->substreamid = 0; | |
| 348 | |||
| 349 | 15022 | int ret = ac3_parse_header(gbc, hdr); | |
| 350 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 15022 times.
|
15022 | if (ret < 0) |
| 351 | ✗ | return ret; | |
| 352 | } else { | ||
| 353 | /* Enhanced AC-3 */ | ||
| 354 | 110532 | hdr->crc1 = 0; | |
| 355 | 110532 | hdr->frame_type = get_bits(gbc, 2); | |
| 356 |
2/2✓ Branch 0 taken 296 times.
✓ Branch 1 taken 110236 times.
|
110532 | if(hdr->frame_type == EAC3_FRAME_TYPE_RESERVED) |
| 357 | 296 | return AC3_PARSE_ERROR_FRAME_TYPE; | |
| 358 | |||
| 359 | 110236 | hdr->substreamid = get_bits(gbc, 3); | |
| 360 | |||
| 361 | 110236 | hdr->frame_size = (get_bits(gbc, 11) + 1) << 1; | |
| 362 |
2/2✓ Branch 0 taken 2 times.
✓ Branch 1 taken 110234 times.
|
110236 | if(hdr->frame_size < AC3_HEADER_SIZE) |
| 363 | 2 | return AC3_PARSE_ERROR_FRAME_SIZE; | |
| 364 | |||
| 365 | 110234 | hdr->sr_code = get_bits(gbc, 2); | |
| 366 |
2/2✓ Branch 0 taken 90 times.
✓ Branch 1 taken 110144 times.
|
110234 | if (hdr->sr_code == 3) { |
| 367 | 90 | int sr_code2 = get_bits(gbc, 2); | |
| 368 |
2/2✓ Branch 0 taken 18 times.
✓ Branch 1 taken 72 times.
|
90 | if(sr_code2 == 3) |
| 369 | 18 | return AC3_PARSE_ERROR_SAMPLE_RATE; | |
| 370 | 72 | hdr->sample_rate = ff_ac3_sample_rate_tab[sr_code2] / 2; | |
| 371 | 72 | hdr->sr_shift = 1; | |
| 372 | } else { | ||
| 373 | 110144 | hdr->num_blocks = eac3_blocks[get_bits(gbc, 2)]; | |
| 374 | 110144 | hdr->sample_rate = ff_ac3_sample_rate_tab[hdr->sr_code]; | |
| 375 | 110144 | hdr->sr_shift = 0; | |
| 376 | } | ||
| 377 | |||
| 378 | 110216 | hdr->channel_mode = get_bits(gbc, 3); | |
| 379 | 110216 | hdr->lfe_on = get_bits1(gbc); | |
| 380 | |||
| 381 | 110216 | hdr->bit_rate = 8LL * hdr->frame_size * hdr->sample_rate / | |
| 382 | 110216 | (hdr->num_blocks * 256); | |
| 383 | 110216 | hdr->channels = ff_ac3_channels_tab[hdr->channel_mode] + hdr->lfe_on; | |
| 384 | |||
| 385 | 110216 | int ret = eac3_parse_header(gbc, hdr); | |
| 386 |
2/2✓ Branch 0 taken 9100 times.
✓ Branch 1 taken 101116 times.
|
110216 | if (ret < 0) |
| 387 | 9100 | return ret; | |
| 388 | } | ||
| 389 | 116138 | hdr->channel_layout = ff_ac3_channel_layout_tab[hdr->channel_mode]; | |
| 390 |
2/2✓ Branch 0 taken 8185 times.
✓ Branch 1 taken 107953 times.
|
116138 | if (hdr->lfe_on) |
| 391 | 8185 | hdr->channel_layout |= AV_CH_LOW_FREQUENCY; | |
| 392 | |||
| 393 | 116138 | return 0; | |
| 394 | } | ||
| 395 | |||
| 396 | // TODO: Better way to pass AC3HeaderInfo fields to mov muxer. | ||
| 397 | 7553 | int avpriv_ac3_parse_header(AC3HeaderInfo **phdr, const uint8_t *buf, | |
| 398 | size_t size) | ||
| 399 | { | ||
| 400 | GetBitContext gb; | ||
| 401 | AC3HeaderInfo *hdr; | ||
| 402 | int err; | ||
| 403 | |||
| 404 |
2/2✓ Branch 0 taken 1039 times.
✓ Branch 1 taken 6514 times.
|
7553 | if (!*phdr) |
| 405 | 1039 | *phdr = av_mallocz(sizeof(AC3HeaderInfo)); | |
| 406 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 7553 times.
|
7553 | if (!*phdr) |
| 407 | ✗ | return AVERROR(ENOMEM); | |
| 408 | 7553 | hdr = *phdr; | |
| 409 | |||
| 410 | 7553 | err = init_get_bits8(&gb, buf, size); | |
| 411 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 7553 times.
|
7553 | if (err < 0) |
| 412 | ✗ | return AVERROR_INVALIDDATA; | |
| 413 | 7553 | err = ff_ac3_parse_header(&gb, hdr); | |
| 414 |
2/2✓ Branch 0 taken 2 times.
✓ Branch 1 taken 7551 times.
|
7553 | if (err < 0) |
| 415 | 2 | return AVERROR_INVALIDDATA; | |
| 416 | |||
| 417 | 7551 | return get_bits_count(&gb); | |
| 418 | } | ||
| 419 | |||
| 420 | 133606 | int av_ac3_parse_header(const uint8_t *buf, size_t size, | |
| 421 | uint8_t *bitstream_id, uint16_t *frame_size) | ||
| 422 | { | ||
| 423 | GetBitContext gb; | ||
| 424 | AC3HeaderInfo hdr; | ||
| 425 | uint8_t tmp[32 + AV_INPUT_BUFFER_PADDING_SIZE]; | ||
| 426 | int err; | ||
| 427 | |||
| 428 | 133606 | size = FFMIN(32, size); | |
| 429 | 133606 | memcpy(tmp, buf, size); | |
| 430 | 133606 | memset(tmp + size, 0, AV_INPUT_BUFFER_PADDING_SIZE); | |
| 431 | 133606 | err = init_get_bits8(&gb, tmp, size); | |
| 432 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 133606 times.
|
133606 | if (err < 0) |
| 433 | ✗ | return AVERROR_INVALIDDATA; | |
| 434 | 133606 | err = ff_ac3_parse_header(&gb, &hdr); | |
| 435 |
2/2✓ Branch 0 taken 34328 times.
✓ Branch 1 taken 99278 times.
|
133606 | if (err < 0) |
| 436 | 34328 | return AVERROR_INVALIDDATA; | |
| 437 | |||
| 438 | 99278 | *bitstream_id = hdr.bitstream_id; | |
| 439 | 99278 | *frame_size = hdr.frame_size; | |
| 440 | |||
| 441 | 99278 | return 0; | |
| 442 | } | ||
| 443 | |||
| 444 | 47667 | static int ac3_sync(uint64_t state, int *need_next_header, int *new_frame_start) | |
| 445 | { | ||
| 446 | int err; | ||
| 447 | union { | ||
| 448 | uint64_t u64; | ||
| 449 | uint8_t u8[8 + AV_INPUT_BUFFER_PADDING_SIZE]; | ||
| 450 | 47667 | } tmp = { av_be2ne64(state) }; | |
| 451 | AC3HeaderInfo hdr; | ||
| 452 | GetBitContext gbc; | ||
| 453 | |||
| 454 |
3/4✓ Branch 0 taken 5 times.
✓ Branch 1 taken 47662 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 5 times.
|
47667 | if (tmp.u8[1] == 0x77 && tmp.u8[2] == 0x0b) { |
| 455 | ✗ | FFSWAP(uint8_t, tmp.u8[1], tmp.u8[2]); | |
| 456 | ✗ | FFSWAP(uint8_t, tmp.u8[3], tmp.u8[4]); | |
| 457 | ✗ | FFSWAP(uint8_t, tmp.u8[5], tmp.u8[6]); | |
| 458 | } | ||
| 459 | |||
| 460 | 47667 | init_get_bits(&gbc, tmp.u8+8-AC3_HEADER_SIZE, 54); | |
| 461 | 47667 | err = ff_ac3_parse_header(&gbc, &hdr); | |
| 462 | |||
| 463 |
2/2✓ Branch 0 taken 41148 times.
✓ Branch 1 taken 6519 times.
|
47667 | if(err < 0) |
| 464 | 41148 | return 0; | |
| 465 | |||
| 466 | 6519 | *new_frame_start = (hdr.frame_type != EAC3_FRAME_TYPE_DEPENDENT); | |
| 467 |
3/4✓ Branch 0 taken 314 times.
✓ Branch 1 taken 6205 times.
✓ Branch 2 taken 314 times.
✗ Branch 3 not taken.
|
6519 | *need_next_header = *new_frame_start || (hdr.frame_type != EAC3_FRAME_TYPE_AC3_CONVERT); |
| 468 | 6519 | return hdr.frame_size; | |
| 469 | } | ||
| 470 | |||
| 471 | 77 | static av_cold int ac3_parse_init(AVCodecParserContext *s1) | |
| 472 | { | ||
| 473 | 77 | AACAC3ParseContext *s = s1->priv_data; | |
| 474 | 77 | s->header_size = AC3_HEADER_SIZE; | |
| 475 | 77 | s->crc_ctx = av_crc_get_table(AV_CRC_16_ANSI); | |
| 476 | 77 | s->sync = ac3_sync; | |
| 477 | 77 | return 0; | |
| 478 | } | ||
| 479 | |||
| 480 | |||
| 481 | const FFCodecParser ff_ac3_parser = { | ||
| 482 | PARSER_CODEC_LIST(AV_CODEC_ID_AC3, AV_CODEC_ID_EAC3), | ||
| 483 | .priv_data_size = sizeof(AACAC3ParseContext), | ||
| 484 | .init = ac3_parse_init, | ||
| 485 | .parse = ff_aac_ac3_parse, | ||
| 486 | .close = ff_parse_close, | ||
| 487 | }; | ||
| 488 | |||
| 489 | #else | ||
| 490 | |||
| 491 | int avpriv_ac3_parse_header(AC3HeaderInfo **phdr, const uint8_t *buf, | ||
| 492 | size_t size) | ||
| 493 | { | ||
| 494 | return AVERROR(ENOSYS); | ||
| 495 | } | ||
| 496 | |||
| 497 | int av_ac3_parse_header(const uint8_t *buf, size_t size, | ||
| 498 | uint8_t *bitstream_id, uint16_t *frame_size) | ||
| 499 | { | ||
| 500 | return AVERROR(ENOSYS); | ||
| 501 | } | ||
| 502 | #endif | ||
| 503 |