[FFmpeg-devel] [PATCH v5 07/12] swscale/internal: expose sws_init_single_context() internally
Niklas Haas
ffmpeg at haasn.xyz
Mon Nov 11 09:56:11 EET 2024
From: Niklas Haas <git at haasn.dev>
Used by the graph API swscale wrapper, for now.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git at haasn.dev>
---
libswscale/swscale_internal.h | 3 +++
libswscale/utils.c | 4 ++--
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/libswscale/swscale_internal.h b/libswscale/swscale_internal.h
index 5218ab0921..7c9517975b 100644
--- a/libswscale/swscale_internal.h
+++ b/libswscale/swscale_internal.h
@@ -958,6 +958,9 @@ extern const int32_t ff_yuv2rgb_coeffs[11][4];
extern const AVClass ff_sws_context_class;
+int sws_init_single_context(SwsContext *sws, SwsFilter *srcFilter,
+ SwsFilter *dstFilter);
+
/**
* Set c->convert_unscaled to an unscaled converter if one exists for the
* specific source and destination formats, bit depths, flags, etc.
diff --git a/libswscale/utils.c b/libswscale/utils.c
index a01138d11b..1b6f54fc30 100644
--- a/libswscale/utils.c
+++ b/libswscale/utils.c
@@ -1312,8 +1312,8 @@ static enum AVPixelFormat alphaless_fmt(enum AVPixelFormat fmt)
}
}
-static av_cold int sws_init_single_context(SwsContext *sws, SwsFilter *srcFilter,
- SwsFilter *dstFilter)
+av_cold int sws_init_single_context(SwsContext *sws, SwsFilter *srcFilter,
+ SwsFilter *dstFilter)
{
int i;
int usesVFilter, usesHFilter;
--
2.46.1
More information about the ffmpeg-devel
mailing list