| 439 | } |
| 440 | |
| 441 | static av_cold void uninit(AVFilterContext *ctx) |
| 442 | { |
| 443 | ScaleContext *scale = ctx->priv; |
| 444 | av_expr_free(scale->w_pexpr); |
| 445 | av_expr_free(scale->h_pexpr); |
| 446 | scale->w_pexpr = scale->h_pexpr = NULL; |
| 447 | ff_framesync_uninit(&scale->fs); |
| 448 | sws_free_context(&scale->sws); |
| 449 | } |
| 450 | |
| 451 | static int query_formats(const AVFilterContext *ctx, |
| 452 | AVFilterFormatsConfig **cfg_in, |
nothing calls this directly
no test coverage detected