diff postproc/swscale_internal.h @ 9499:bc5b87370cd1

cleanup
author michael
date Mon, 24 Feb 2003 00:12:30 +0000
parents 543ab3909b78
children 5025150738eb
line wrap: on
line diff
--- a/postproc/swscale_internal.h	Sun Feb 23 23:48:03 2003 +0000
+++ b/postproc/swscale_internal.h	Mon Feb 24 00:12:30 2003 +0000
@@ -26,6 +26,10 @@
 
 /* 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 @@
 } 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);