diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2025-01-08 21:22:37 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2025-01-12 15:41:39 +0100 |
commit | 4973bb661edd3eea038eb275bebc40be2bae75b9 (patch) | |
tree | ba9ece277aacf0d3039cfcd398d4110fdd75ef22 /libswscale/utils.c | |
parent | 0bc1d2fac4d61fc2ca02bfedf0ef256bc3bccb7f (diff) | |
download | ffmpeg-4973bb661edd3eea038eb275bebc40be2bae75b9.tar.gz |
swscale/cms,graph,lut3d: Use ff_-prefix, don't export internal functions
Symbols with the sws_* prefix are exported.
Reviewed-by: Alexander Strasser <eclipse7@gmx.net>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libswscale/utils.c')
-rw-r--r-- | libswscale/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/utils.c b/libswscale/utils.c index 10b1f0701a..445ad8ae71 100644 --- a/libswscale/utils.c +++ b/libswscale/utils.c @@ -2480,7 +2480,7 @@ void sws_freeContext(SwsContext *sws) return; for (i = 0; i < FF_ARRAY_ELEMS(c->graph); i++) - sws_graph_free(&c->graph[i]); + ff_sws_graph_free(&c->graph[i]); for (i = 0; i < c->nb_slice_ctx; i++) sws_freeContext(c->slice_ctx[i]); |