| 871 | } |
| 872 | |
| 873 | void ff_encode_flush_buffers(AVCodecContext *avctx) |
| 874 | { |
| 875 | AVCodecInternal *avci = avctx->internal; |
| 876 | |
| 877 | if (avci->in_frame) |
| 878 | av_frame_unref(avci->in_frame); |
| 879 | if (avci->recon_frame) |
| 880 | av_frame_unref(avci->recon_frame); |
| 881 | } |
| 882 | |
| 883 | AVCodecInternal *ff_encode_internal_alloc(void) |
| 884 | { |
no test coverage detected