Searched refs:bitstream_id (Results 1 - 11 of 11) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
H A D | ac3_parser.c | 68 hdr->bitstream_id = show_bits_long(gbc, 29) & 0x1F; in ff_ac3_parse_header() 69 if(hdr->bitstream_id > 16) in ff_ac3_parse_header() 82 if(hdr->bitstream_id <= 10) { in ff_ac3_parse_header() 110 hdr->sr_shift = FFMAX(hdr->bitstream_id, 8) - 8; in ff_ac3_parse_header() 182 uint8_t *bitstream_id, uint16_t *frame_size) in av_ac3_parse_header() 193 *bitstream_id = hdr.bitstream_id; in av_ac3_parse_header() 230 if(hdr.bitstream_id>10) in ac3_sync() 266 uint8_t *bitstream_id, uint16_t *frame_size) in av_ac3_parse_header() 181 av_ac3_parse_header(const uint8_t *buf, size_t size, uint8_t *bitstream_id, uint16_t *frame_size) av_ac3_parse_header() argument 265 av_ac3_parse_header(const uint8_t *buf, size_t size, uint8_t *bitstream_id, uint16_t *frame_size) av_ac3_parse_header() argument
|
H A D | ac3_parser.h | 33 uint8_t *bitstream_id, uint16_t *frame_size);
|
H A D | ac3_parser_internal.h | 41 uint8_t bitstream_id; member
|
H A D | ac3enc.c | 973 if (s->bitstream_id == 6) { in count_frame_bits() 1459 put_bits(&s->pb, 5, s->bitstream_id); in ac3_output_frame_header() 1479 if (s->bitstream_id == 6) { in ac3_output_frame_header() 1836 switch (s->bitstream_id) { in dprint_options() 1844 ff_dlog(avctx, "bitstream_id: %s (%d)\n", strbuf, s->bitstream_id); in dprint_options() 1894 if (s->bitstream_id == 6) { in dprint_options() 2148 if (s->bitstream_id > 8 && s->bitstream_id < 11) { in ff_ac3_validate_metadata() 2156 s->bitstream_id in ff_ac3_validate_metadata() [all...] |
H A D | ac3dec.h | 86 int bitstream_id; ///< bitstream id (bsid) member
|
H A D | ac3enc.h | 177 int bitstream_id; ///< bitstream id (bsid) member
|
H A D | eac3enc.c | 146 put_bits(&s->pb, 5, s->bitstream_id); /* bitstream id (EAC3=16) */ in ff_eac3_output_frame_header()
|
H A D | ac3dec.c | 287 if (s->bitstream_id != 6) { in ac3_parse_header() 332 s->bitstream_id = hdr.bitstream_id; in parse_frame_header() 364 if (s->bitstream_id <= 10) { in parse_frame_header()
|
/third_party/ffmpeg/libavformat/ |
H A D | ac3dec.c | 48 uint8_t bitstream_id; in ac3_eac3_probe() local 62 ret = av_ac3_parse_header(buf3, 8, &bitstream_id, in ac3_eac3_probe() 65 ret = av_ac3_parse_header(buf2, end - buf2, &bitstream_id, in ac3_eac3_probe() 83 if (bitstream_id > 10) in ac3_eac3_probe()
|
H A D | mpegtsenc.c | 2120 dvb_ac3_desc->bsid = hdr->bitstream_id; in mpegts_write_packet_internal()
|
H A D | movenc.c | 462 if (hdr->bitstream_id <= 10 && hdr->substreamid != 0) { in handle_eac3() 497 info->substream[hdr->substreamid].bsid = hdr->bitstream_id; in handle_eac3()
|
Completed in 25 milliseconds