diff --git a/libswscale/swscale.c b/libswscale/swscale.c index 2d36475cae916060424b748798769e4934321b17..11c2a4f6816621241e694446a53dbf3a4f63d49d 100644 --- a/libswscale/swscale.c +++ b/libswscale/swscale.c @@ -3165,16 +3165,6 @@ void sws_freeContext(SwsContext *c){ av_free(c); } -/** - * Checks if context is valid or reallocs a new one instead. - * If context is NULL, just calls sws_getContext() to get a new one. - * Otherwise, checks if the parameters are the ones already saved in context. - * If that is the case, returns the current context. - * Otherwise, frees context and gets a new one. - * - * Be warned that srcFilter, dstFilter are not checked, they are - * asumed to remain valid. - */ struct SwsContext *sws_getCachedContext(struct SwsContext *context, int srcW, int srcH, enum PixelFormat srcFormat, int dstW, int dstH, enum PixelFormat dstFormat, int flags, diff --git a/libswscale/swscale.h b/libswscale/swscale.h index 53e4489fdfa4e5067210a3e6c7aee97ecda40cdf..dbc1cd5c0e5800655380ef0b7bf66bc0e419dfd1 100644 --- a/libswscale/swscale.h +++ b/libswscale/swscale.h @@ -149,6 +149,16 @@ SwsFilter *sws_getDefaultFilter(float lumaGBlur, float chromaGBlur, int verbose); void sws_freeFilter(SwsFilter *filter); +/** + * Checks if context is valid or reallocs a new one instead. + * If context is NULL, just calls sws_getContext() to get a new one. + * Otherwise, checks if the parameters are the ones already saved in context. + * If that is the case, returns the current context. + * Otherwise, frees context and gets a new one. + * + * Be warned that srcFilter, dstFilter are not checked, they are + * asumed to remain valid. + */ struct SwsContext *sws_getCachedContext(struct SwsContext *context, int srcW, int srcH, enum PixelFormat srcFormat, int dstW, int dstH, enum PixelFormat dstFormat, int flags,