| 38 | } FTRParseContext; |
| 39 | |
| 40 | static int ftr_parse(AVCodecParserContext *s, AVCodecContext *avctx, |
| 41 | const uint8_t **poutbuf, int *poutbuf_size, |
| 42 | const uint8_t *buf, int buf_size) |
| 43 | { |
| 44 | uint8_t tmp[8 + AV_INPUT_BUFFER_PADDING_SIZE]; |
| 45 | FTRParseContext *ftr = s->priv_data; |
| 46 | uint64_t state = ftr->pc.state64; |
| 47 | int next = END_NOT_FOUND; |
| 48 | AACADTSHeaderInfo hdr; |
| 49 | int size; |
| 50 | |
| 51 | *poutbuf_size = 0; |
| 52 | *poutbuf = NULL; |
| 53 | |
| 54 | if (s->flags & PARSER_FLAG_COMPLETE_FRAMES) { |
| 55 | next = buf_size; |
| 56 | } else { |
| 57 | for (int i = 0; i < buf_size; i++) { |
| 58 | if (ftr->skip > 0) { |
| 59 | ftr->skip--; |
| 60 | if (ftr->skip == 0 && ftr->split) { |
| 61 | ftr->split = 0; |
| 62 | next = i; |
| 63 | s->duration = 1024; |
| 64 | s->key_frame = 1; |
| 65 | break; |
| 66 | } else if (ftr->skip > 0) { |
| 67 | continue; |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | state = (state << 8) | buf[i]; |
| 72 | AV_WB64(tmp, state); |
| 73 | size = ff_adts_header_parse_buf(tmp + 8 - AV_AAC_ADTS_HEADER_SIZE, &hdr); |
| 74 | |
| 75 | if (size > 0) { |
| 76 | ftr->skip = size - 6; |
| 77 | ftr->frame_index += ff_mpeg4audio_channels[hdr.chan_config]; |
| 78 | if (ftr->frame_index >= avctx->ch_layout.nb_channels) { |
| 79 | ftr->frame_index = 0; |
| 80 | ftr->split = 1; |
| 81 | } |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | ftr->pc.state64 = state; |
| 86 | |
| 87 | if (ff_combine_frame(&ftr->pc, next, &buf, &buf_size) < 0) { |
| 88 | *poutbuf = NULL; |
| 89 | *poutbuf_size = 0; |
| 90 | return buf_size; |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | *poutbuf = buf; |
| 95 | *poutbuf_size = buf_size; |
| 96 | |
| 97 | return next; |
nothing calls this directly
no test coverage detected