diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-02-05 22:54:45 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-02-05 22:54:45 +0000 |
commit | 89ee5c68972aad0350a2aa96a7ea4fdf2c0dbdd8 (patch) | |
tree | 24110867caecb5dd916c31f67a9ed4f0e21eb96a /libswscale/swscale.h | |
parent | 3f3dc76cb1fbf9b14536b993a6f435e8ab806585 (diff) | |
download | ffmpeg-89ee5c68972aad0350a2aa96a7ea4fdf2c0dbdd8.tar.gz |
Satisfy consistency need:
int * sws_getCoefficients -> int *sws_getCoefficients.
Originally committed as revision 30518 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale/swscale.h')
-rw-r--r-- | libswscale/swscale.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/swscale.h b/libswscale/swscale.h index ba198aaf2f..9dee6b9453 100644 --- a/libswscale/swscale.h +++ b/libswscale/swscale.h @@ -108,7 +108,7 @@ const char *swscale_license(void); * suitable for sws_setColorspaceDetails() * @colorspace one of SWS_CS_* If invalid, SWS_CS_DEFAULT is used. */ -const int * sws_getCoefficients(int colorspace); +const int *sws_getCoefficients(int colorspace); // when used for filters they must have an odd number of elements |