[FFmpeg-cvslog] r28528 - in trunk/libswscale: swscale.c swscale.h

stefano subversion
Wed Feb 11 00:45:50 CET 2009


Author: stefano
Date: Wed Feb 11 00:45:50 2009
New Revision: 28528

Log:
Move sws_getGaussianVec() documentation from swscale.c to swscale.h.

Modified:
   trunk/libswscale/swscale.c
   trunk/libswscale/swscale.h

Modified: trunk/libswscale/swscale.c
==============================================================================
--- trunk/libswscale/swscale.c	Wed Feb 11 00:43:08 2009	(r28527)
+++ trunk/libswscale/swscale.c	Wed Feb 11 00:45:50 2009	(r28528)
@@ -2885,10 +2885,6 @@ SwsFilter *sws_getDefaultFilter(float lu
     return filter;
 }
 
-/**
- * Returns a normalized Gaussian curve used to filter stuff
- * quality=3 is high quality, lower is lower quality.
- */
 SwsVector *sws_getGaussianVec(double variance, double quality){
     const int length= (int)(variance*quality + 0.5) | 1;
     int i;

Modified: trunk/libswscale/swscale.h
==============================================================================
--- trunk/libswscale/swscale.h	Wed Feb 11 00:43:08 2009	(r28527)
+++ trunk/libswscale/swscale.h	Wed Feb 11 00:45:50 2009	(r28528)
@@ -129,6 +129,11 @@ int sws_scale_ordered(struct SwsContext 
 
 int sws_setColorspaceDetails(struct SwsContext *c, const int inv_table[4], int srcRange, const int table[4], int dstRange, int brightness, int contrast, int saturation);
 int sws_getColorspaceDetails(struct SwsContext *c, int **inv_table, int *srcRange, int **table, int *dstRange, int *brightness, int *contrast, int *saturation);
+
+/**
+ * Returns a normalized Gaussian curve used to filter stuff
+ * quality=3 is high quality, lower is lower quality.
+ */
 SwsVector *sws_getGaussianVec(double variance, double quality);
 
 /**




More information about the ffmpeg-cvslog mailing list