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:
authorMichael Niedermayer <michaelni@gmx.at>2003-02-24 03:12:30 +0300
committerMichael Niedermayer <michaelni@gmx.at>2003-02-24 03:12:30 +0300
commit3e499f531a4f511c6866ea508d1e19064d07b7ee (patch)
tree344ebd7697c4bbad6e62c57bb398aba11ba16582 /postproc/swscale_internal.h
parent8c031d1cbdbcaa489ae1ff32d22b4e919602928d (diff)
cleanup
Originally committed as revision 9500 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc/swscale_internal.h')
-rw-r--r--postproc/swscale_internal.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/postproc/swscale_internal.h b/postproc/swscale_internal.h
index fe7da66087..84f6db96a2 100644
--- a/postproc/swscale_internal.h
+++ b/postproc/swscale_internal.h
@@ -26,6 +26,10 @@ typedef int (*SwsFunc)(struct SwsContext *context, uint8_t* src[], int srcStride
/* this struct should be aligned on at least 32-byte boundary */
typedef struct SwsContext{
+ /**
+ *
+ * Note the src,dst,srcStride,dstStride will be copied, in the sws_scale() warper so they can freely be modified here
+ */
SwsFunc swScale;
int srcW, srcH, dstH;
int chrSrcW, chrSrcH, chrDstW, chrDstH;
@@ -119,7 +123,6 @@ typedef struct SwsContext{
} SwsContext;
//FIXME check init (where 0)
-inline void sws_orderYUV(int format, uint8_t * sortedP[], int sortedStride[], uint8_t * p[], int stride[]);
SwsFunc yuv2rgb_get_func_ptr (SwsContext *c);
int yuv2rgb_c_init_tables (SwsContext *c, const int inv_table[4], int fullRange, int brightness, int contrast, int saturation);