diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-02-25 21:12:38 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-02-25 21:12:38 +0000 |
commit | 8ebed38e7a11c92c170a96f71dd03e26d2a56654 (patch) | |
tree | 3a4264fc3f7b33ca26f784cce7db4adcbbf0471e /libswscale/yuv2rgb.c | |
parent | 11ab237e31860435816bc70739dc5a35c3078cc4 (diff) | |
download | ffmpeg-8ebed38e7a11c92c170a96f71dd03e26d2a56654.tar.gz |
Apply consistency nit.
Originally committed as revision 30729 to svn://svn.mplayerhq.hu/mplayer/trunk/libswscale
Diffstat (limited to 'libswscale/yuv2rgb.c')
-rw-r--r-- | libswscale/yuv2rgb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libswscale/yuv2rgb.c b/libswscale/yuv2rgb.c index a019bf76fd..2a05477bda 100644 --- a/libswscale/yuv2rgb.c +++ b/libswscale/yuv2rgb.c @@ -49,7 +49,7 @@ const int32_t ff_yuv2rgb_coeffs[8][4] = { {117579, 136230, 16907, 35559} /* SMPTE 240M (1987) */ }; -const int * sws_getCoefficients(int colorspace) +const int *sws_getCoefficients(int colorspace) { if (colorspace > 7 || colorspace < 0) colorspace = SWS_CS_DEFAULT; |