| 176 | } |
| 177 | |
| 178 | static av_cold void ftr_flush(AVCodecContext *avctx) |
| 179 | { |
| 180 | FTRContext *s = avctx->priv_data; |
| 181 | |
| 182 | for (int i = 0; i < s->nb_context; i++) |
| 183 | avcodec_flush_buffers(s->aac_avctx[i]); |
| 184 | } |
| 185 | |
| 186 | static av_cold int ftr_close(AVCodecContext *avctx) |
| 187 | { |
nothing calls this directly
no test coverage detected