Home
last modified time | relevance | path

Searched refs:cur_au_index (Results 1 – 1 of 1) sorted by relevance

/third_party/ffmpeg/libavformat/
Drtpdec_mpeg4.c62 int cur_au_index; member
182 if (data->cur_au_index > data->nb_au_headers) { in aac_parse_packet()
186 if (data->buf_size - data->buf_pos < data->au_headers[data->cur_au_index].size) { in aac_parse_packet()
190 if ((ret = av_new_packet(pkt, data->au_headers[data->cur_au_index].size)) < 0) { in aac_parse_packet()
194 memcpy(pkt->data, &data->buf[data->buf_pos], data->au_headers[data->cur_au_index].size); in aac_parse_packet()
195 data->buf_pos += data->au_headers[data->cur_au_index].size; in aac_parse_packet()
197 data->cur_au_index++; in aac_parse_packet()
199 if (data->cur_au_index == data->nb_au_headers) { in aac_parse_packet()
277 data->cur_au_index = 1; in aac_parse_packet()