MCPcopy Create free account
hub / github.com/FFmpeg/FFmpeg / ff_adts_header_parse_buf

Function ff_adts_header_parse_buf

libavcodec/adts_header.c:76–83  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

74}
75
76int ff_adts_header_parse_buf(const uint8_t buf[AV_AAC_ADTS_HEADER_SIZE + AV_INPUT_BUFFER_PADDING_SIZE],
77 AACADTSHeaderInfo *hdr)
78{
79 GetBitContext gb;
80 av_unused int ret = init_get_bits8(&gb, buf, AV_AAC_ADTS_HEADER_SIZE);
81 av_assert1(ret >= 0);
82 return ff_adts_header_parse(&gb, hdr);
83}

Callers 6

ff_aac_ac3_parseFunction · 0.85
av_adts_header_parseFunction · 0.85
avpriv_adts_header_parseFunction · 0.85
ftr_parseFunction · 0.85
aac_syncFunction · 0.85
aac_adtstoasc_filterFunction · 0.85

Calls 2

init_get_bits8Function · 0.85
ff_adts_header_parseFunction · 0.85

Tested by

no test coverage detected