diff options
author | VĂctor Paesa <wzrlpy@arsystel.com> | 2006-09-04 09:38:24 +0000 |
---|---|---|
committer | Guillaume Poirier <gpoirier@mplayerhq.hu> | 2006-09-04 09:38:24 +0000 |
commit | 22e469590583ebff6305698f0a49676007a6509a (patch) | |
tree | 31871ec7e5e87808d1ed18ef9068582b158af3fe /libswscale/swscale.h | |
parent | d67898427b82f1fa92b32256d76ba7222d92c7ba (diff) | |
download | ffmpeg-22e469590583ebff6305698f0a49676007a6509a.tar.gz |
Add sws_getCachedContext(), which checks if context is valid or reallocs a new one instead.
Patch by Victor Paesa <wzrlpy@arsystel.com>
Original thread:
Date: Aug 31, 2006 7:15 PM
Subject: [Ffmpeg-devel] [PATCH] Add sws_getCachedContext() to swscale library
Originally committed as revision 19667 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale/swscale.h')
-rw-r--r-- | libswscale/swscale.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libswscale/swscale.h b/libswscale/swscale.h index 2b558a25b7..ace89fa292 100644 --- a/libswscale/swscale.h +++ b/libswscale/swscale.h @@ -135,6 +135,11 @@ SwsFilter *sws_getDefaultFilter(float lumaGBlur, float chromaGBlur, int verbose); void sws_freeFilter(SwsFilter *filter); +struct SwsContext *sws_getCachedContext(struct SwsContext *context, + int srcW, int srcH, int srcFormat, + int dstW, int dstH, int dstFormat, int flags, + SwsFilter *srcFilter, SwsFilter *dstFilter, double *param); + #ifdef __cplusplus } #endif |