summaryrefslogtreecommitdiff
path: root/postproc/yuv2rgb_template.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2003-02-11 12:57:53 +0000
committerMichael Niedermayer <michaelni@gmx.at>2003-02-11 12:57:53 +0000
commitf0b62bbde2bebb847414ceeb5d0038adf15dd73a (patch)
tree94d1a520dca1f168170fcc17618fa29a358b07ff /postproc/yuv2rgb_template.c
parentdf4f91471cd6e1d7aa3501ca0f2aee6b87e6b02c (diff)
cleanup (unsigned stride -> int stride)
Originally committed as revision 9393 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc/yuv2rgb_template.c')
-rw-r--r--postproc/yuv2rgb_template.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/postproc/yuv2rgb_template.c b/postproc/yuv2rgb_template.c
index d8e4a87a06..d6b2097808 100644
--- a/postproc/yuv2rgb_template.c
+++ b/postproc/yuv2rgb_template.c
@@ -124,7 +124,7 @@
static inline void RENAME(yuv420_rgb16) (uint8_t * image, uint8_t * py,
uint8_t * pu, uint8_t * pv,
unsigned h_size, unsigned v_size,
- unsigned rgb_stride, unsigned y_stride, unsigned uv_stride)
+ int rgb_stride, int y_stride, int uv_stride)
{
int even = 1;
int x, y;
@@ -229,7 +229,7 @@ YUV2RGB
static inline void RENAME(yuv420_rgb15) (uint8_t * image, uint8_t * py,
uint8_t * pu, uint8_t * pv,
unsigned h_size, unsigned v_size,
- unsigned rgb_stride, unsigned y_stride, unsigned uv_stride)
+ int rgb_stride, int y_stride, int uv_stride)
{
int even = 1;
int x, y;
@@ -330,7 +330,7 @@ YUV2RGB
static inline void RENAME(yuv420_rgb24) (uint8_t * image, uint8_t * py,
uint8_t * pu, uint8_t * pv,
unsigned h_size, unsigned v_size,
- unsigned rgb_stride, unsigned y_stride, unsigned uv_stride)
+ int rgb_stride, int y_stride, int uv_stride)
{
int even = 1;
int x, y;
@@ -489,7 +489,7 @@ YUV2RGB
static inline void RENAME(yuv420_argb32) (uint8_t * image, uint8_t * py,
uint8_t * pu, uint8_t * pv,
unsigned h_size, unsigned v_size,
- unsigned rgb_stride, unsigned y_stride, unsigned uv_stride)
+ int rgb_stride, int y_stride, int uv_stride)
{
int even = 1;
int x, y;