X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavcodec%2Fac3_parser.c;h=aedcbcd47287e36635446ac4e6f9f87361a6d03c;hb=87a9173679118beef867c7e9626868b4a3dfc837;hp=f2bc299175e9e7bb09a9d4074bf3181ef9f09845;hpb=e59cc205931dc37fa919490f0ee05e3558b1adf9;p=ffmpeg diff --git a/libavcodec/ac3_parser.c b/libavcodec/ac3_parser.c index f2bc299175e..aedcbcd4728 100644 --- a/libavcodec/ac3_parser.c +++ b/libavcodec/ac3_parser.c @@ -1,5 +1,5 @@ /* - * AC3 parser + * AC-3 parser * Copyright (c) 2003 Fabrice Bellard. * Copyright (c) 2003 Michael Niedermayer. * @@ -34,122 +34,153 @@ static const uint8_t eac3_blocks[4] = { }; -int ff_ac3_parse_header(const uint8_t buf[7], AC3HeaderInfo *hdr) +int ff_ac3_parse_header(GetBitContext *gbc, AC3HeaderInfo *hdr) { - GetBitContext gbc; + int frame_size_code; memset(hdr, 0, sizeof(*hdr)); - init_get_bits(&gbc, buf, 54); - - hdr->sync_word = get_bits(&gbc, 16); + hdr->sync_word = get_bits(gbc, 16); if(hdr->sync_word != 0x0B77) return AC3_PARSE_ERROR_SYNC; - /* read ahead to bsid to make sure this is AC-3, not E-AC-3 */ - hdr->bitstream_id = show_bits_long(&gbc, 29) & 0x1F; - if(hdr->bitstream_id > 10) + /* read ahead to bsid to distinguish between AC-3 and E-AC-3 */ + hdr->bitstream_id = show_bits_long(gbc, 29) & 0x1F; + if(hdr->bitstream_id > 16) return AC3_PARSE_ERROR_BSID; - hdr->crc1 = get_bits(&gbc, 16); - hdr->sr_code = get_bits(&gbc, 2); - if(hdr->sr_code == 3) - return AC3_PARSE_ERROR_SAMPLE_RATE; + hdr->num_blocks = 6; - hdr->frame_size_code = get_bits(&gbc, 6); - if(hdr->frame_size_code > 37) - return AC3_PARSE_ERROR_FRAME_SIZE; + /* set default mix levels */ + hdr->center_mix_level = 1; // -4.5dB + hdr->surround_mix_level = 1; // -6.0dB - skip_bits(&gbc, 5); // skip bsid, already got it + if(hdr->bitstream_id <= 10) { + /* Normal AC-3 */ + hdr->crc1 = get_bits(gbc, 16); + hdr->sr_code = get_bits(gbc, 2); + if(hdr->sr_code == 3) + return AC3_PARSE_ERROR_SAMPLE_RATE; - hdr->bitstream_mode = get_bits(&gbc, 3); - hdr->channel_mode = get_bits(&gbc, 3); - if((hdr->channel_mode & 1) && hdr->channel_mode != AC3_CHMODE_MONO) { - hdr->center_mix_level = get_bits(&gbc, 2); - } - if(hdr->channel_mode & 4) { - hdr->surround_mix_level = get_bits(&gbc, 2); - } - if(hdr->channel_mode == AC3_CHMODE_STEREO) { - hdr->dolby_surround_mode = get_bits(&gbc, 2); - } - hdr->lfe_on = get_bits1(&gbc); + frame_size_code = get_bits(gbc, 6); + if(frame_size_code > 37) + return AC3_PARSE_ERROR_FRAME_SIZE; + + skip_bits(gbc, 5); // skip bsid, already got it + + skip_bits(gbc, 3); // skip bitstream mode + hdr->channel_mode = get_bits(gbc, 3); + + if(hdr->channel_mode == AC3_CHMODE_STEREO) { + skip_bits(gbc, 2); // skip dsurmod + } else { + if((hdr->channel_mode & 1) && hdr->channel_mode != AC3_CHMODE_MONO) + hdr->center_mix_level = get_bits(gbc, 2); + if(hdr->channel_mode & 4) + hdr->surround_mix_level = get_bits(gbc, 2); + } + hdr->lfe_on = get_bits1(gbc); + + hdr->sr_shift = FFMAX(hdr->bitstream_id, 8) - 8; + hdr->sample_rate = ff_ac3_sample_rate_tab[hdr->sr_code] >> hdr->sr_shift; + hdr->bit_rate = (ff_ac3_bitrate_tab[frame_size_code>>1] * 1000) >> hdr->sr_shift; + hdr->channels = ff_ac3_channels_tab[hdr->channel_mode] + hdr->lfe_on; + hdr->frame_size = ff_ac3_frame_size_tab[frame_size_code][hdr->sr_code] * 2; + hdr->frame_type = EAC3_FRAME_TYPE_AC3_CONVERT; //EAC3_FRAME_TYPE_INDEPENDENT; + hdr->substreamid = 0; + } else { + /* Enhanced AC-3 */ + hdr->crc1 = 0; + hdr->frame_type = get_bits(gbc, 2); + if(hdr->frame_type == EAC3_FRAME_TYPE_RESERVED) + return AC3_PARSE_ERROR_FRAME_TYPE; + + hdr->substreamid = get_bits(gbc, 3); + + hdr->frame_size = (get_bits(gbc, 11) + 1) << 1; + if(hdr->frame_size < AC3_HEADER_SIZE) + return AC3_PARSE_ERROR_FRAME_SIZE; + + hdr->sr_code = get_bits(gbc, 2); + if (hdr->sr_code == 3) { + int sr_code2 = get_bits(gbc, 2); + if(sr_code2 == 3) + return AC3_PARSE_ERROR_SAMPLE_RATE; + hdr->sample_rate = ff_ac3_sample_rate_tab[sr_code2] / 2; + hdr->sr_shift = 1; + } else { + hdr->num_blocks = eac3_blocks[get_bits(gbc, 2)]; + hdr->sample_rate = ff_ac3_sample_rate_tab[hdr->sr_code]; + hdr->sr_shift = 0; + } + + hdr->channel_mode = get_bits(gbc, 3); + hdr->lfe_on = get_bits1(gbc); - hdr->sr_shift = FFMAX(hdr->bitstream_id, 8) - 8; - hdr->sample_rate = ff_ac3_sample_rate_tab[hdr->sr_code] >> hdr->sr_shift; - hdr->bit_rate = (ff_ac3_bitrate_tab[hdr->frame_size_code>>1] * 1000) >> hdr->sr_shift; - hdr->channels = ff_ac3_channels_tab[hdr->channel_mode] + hdr->lfe_on; - hdr->frame_size = ff_ac3_frame_size_tab[hdr->frame_size_code][hdr->sr_code] * 2; + hdr->bit_rate = (uint32_t)(8.0 * hdr->frame_size * hdr->sample_rate / + (hdr->num_blocks * 256.0)); + hdr->channels = ff_ac3_channels_tab[hdr->channel_mode] + hdr->lfe_on; + } return 0; } -static int ac3_sync(const uint8_t *buf, int *channels, int *sample_rate, - int *bit_rate, int *samples) +int ff_ac3_parse_header_full(GetBitContext *gbc, AC3HeaderInfo *hdr){ + int ret, i; + ret = ff_ac3_parse_header(gbc, hdr); + if(!ret){ + if(hdr->bitstream_id>10){ + /* Enhanced AC-3 */ + skip_bits(gbc, 5); // skip bitstream id + + /* skip dialog normalization and compression gain */ + for (i = 0; i < (hdr->channel_mode ? 1 : 2); i++) { + skip_bits(gbc, 5); // skip dialog normalization + if (get_bits1(gbc)) { + skip_bits(gbc, 8); //skip Compression gain word + } + } + /* dependent stream channel map */ + if (hdr->frame_type == EAC3_FRAME_TYPE_DEPENDENT && get_bits1(gbc)) { + hdr->channel_map = get_bits(gbc, 16); //custom channel map + return 0; + } + } + //default channel map based on acmod and lfeon + hdr->channel_map = ff_eac3_default_chmap[hdr->channel_mode]; + if(hdr->lfe_on) + hdr->channel_map |= AC3_CHMAP_LFE; + } + return ret; +} + +static int ac3_sync(uint64_t state, AACAC3ParseContext *hdr_info, + int *need_next_header, int *new_frame_start) { int err; - unsigned int sr_code, channel_mode, bitstream_id, lfe_on; - unsigned int stream_type, substream_id, frame_size, sr_code2, num_blocks_code; - GetBitContext bits; + uint64_t tmp = be2me_64(state); AC3HeaderInfo hdr; + GetBitContext gbc; - err = ff_ac3_parse_header(buf, &hdr); + init_get_bits(&gbc, ((uint8_t *)&tmp)+8-AC3_HEADER_SIZE, 54); + err = ff_ac3_parse_header(&gbc, &hdr); - if(err < 0 && err != -2) + if(err < 0) return 0; - bitstream_id = hdr.bitstream_id; - if(bitstream_id <= 10) { /* Normal AC-3 */ - *sample_rate = hdr.sample_rate; - *bit_rate = hdr.bit_rate; - *channels = hdr.channels; - *samples = AC3_FRAME_SIZE; - return hdr.frame_size; - } else if (bitstream_id > 10 && bitstream_id <= 16) { /* Enhanced AC-3 */ - init_get_bits(&bits, &buf[2], (AC3_HEADER_SIZE-2) * 8); - stream_type = get_bits(&bits, 2); - substream_id = get_bits(&bits, 3); - - if (stream_type != 0 || substream_id != 0) - return 0; /* Currently don't support additional streams */ - - frame_size = get_bits(&bits, 11) + 1; - if(frame_size*2 < AC3_HEADER_SIZE) - return 0; - - sr_code = get_bits(&bits, 2); - if (sr_code == 3) { - sr_code2 = get_bits(&bits, 2); - num_blocks_code = 3; - - if(sr_code2 == 3) - return 0; - - *sample_rate = ff_ac3_sample_rate_tab[sr_code2] / 2; - } else { - num_blocks_code = get_bits(&bits, 2); + hdr_info->sample_rate = hdr.sample_rate; + hdr_info->bit_rate = hdr.bit_rate; + hdr_info->channels = hdr.channels; + hdr_info->samples = AC3_FRAME_SIZE; - *sample_rate = ff_ac3_sample_rate_tab[sr_code]; - } - - channel_mode = get_bits(&bits, 3); - lfe_on = get_bits1(&bits); - - *samples = eac3_blocks[num_blocks_code] * 256; - *bit_rate = frame_size * (*sample_rate) * 16 / (*samples); - *channels = ff_ac3_channels_tab[channel_mode] + lfe_on; - - return frame_size * 2; - } - - /* Unsupported bitstream version */ - return 0; + *need_next_header = (hdr.frame_type != EAC3_FRAME_TYPE_AC3_CONVERT); + *new_frame_start = (hdr.frame_type != EAC3_FRAME_TYPE_DEPENDENT); + return hdr.frame_size; } -static int ac3_parse_init(AVCodecParserContext *s1) +static av_cold int ac3_parse_init(AVCodecParserContext *s1) { AACAC3ParseContext *s = s1->priv_data; - s->inbuf_ptr = s->inbuf; s->header_size = AC3_HEADER_SIZE; s->sync = ac3_sync; return 0; @@ -157,9 +188,9 @@ static int ac3_parse_init(AVCodecParserContext *s1) AVCodecParser ac3_parser = { - { CODEC_ID_AC3 }, + { CODEC_ID_AC3, CODEC_ID_EAC3 }, sizeof(AACAC3ParseContext), ac3_parse_init, ff_aac_ac3_parse, - NULL, + ff_parse_close, };