Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2011-06-02 21:00:47 +0400
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2011-06-03 02:41:14 +0400
commitb932eb1be62b47b29969667f14a207e425e79a55 (patch)
treedbd4730418491bb53e98841177529ad4b0cdc8f6 /libswscale/utils.c
parent6713989c231104ff4381ef58f25ec1af8603535b (diff)
swscale: reintroduce sws_format_name() symbol
Reintroduce the internal symbol which was removed in: commit e1197b9e1746c03b1d13d816d1569aeaf1b71ecc Author: Stefano Sabatini <stefano.sabatini-lala@poste.it> Date: Sun May 29 17:57:40 2011 +0200 swscale: remove sws_format_name() Use av_get_pix_fmt_name() instead. The symbol is used by some external libs (hi libx264!), this gives time to them to use the recently added av_get_pix_fmt_name() rather than an internal symbol.
Diffstat (limited to 'libswscale/utils.c')
-rw-r--r--libswscale/utils.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/libswscale/utils.c b/libswscale/utils.c
index 3801ea2fd7..d8c2c0818c 100644
--- a/libswscale/utils.c
+++ b/libswscale/utils.c
@@ -165,6 +165,13 @@ int sws_isSupportedOutput(enum PixelFormat pix_fmt)
extern const int32_t ff_yuv2rgb_coeffs[8][4];
+#if FF_API_SWS_FORMAT_NAME
+const char *sws_format_name(enum PixelFormat format)
+{
+ return av_get_pix_fmt_name(format);
+}
+#endif
+
static double getSplineCoeff(double a, double b, double c, double d, double dist)
{
if (dist<=1.0) return ((d*dist + c)*dist + b)*dist +a;