| 1982 | } |
| 1983 | |
| 1984 | static av_cold void progress_frame_pool_free_entry_cb(AVRefStructOpaque opaque, void *obj) |
| 1985 | { |
| 1986 | ProgressInternal *progress = obj; |
| 1987 | |
| 1988 | ff_thread_progress_destroy(&progress->progress); |
| 1989 | av_frame_free(&progress->f); |
| 1990 | } |
| 1991 | |
| 1992 | av_cold int ff_decode_preinit(AVCodecContext *avctx) |
| 1993 | { |
nothing calls this directly
no test coverage detected