diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2001-11-05 19:55:11 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2001-11-05 19:55:11 +0000 |
commit | cfc15dc6bc9caea26606ea366cced8801349899b (patch) | |
tree | 59ae2065ed295d69a2a0fdb2e3573a98199f7ad8 /postproc/rgb2rgb.h | |
parent | dabcdbc493b02d3b477cb056beaf0fb7a1879c1e (diff) | |
download | ffmpeg-cfc15dc6bc9caea26606ea366cced8801349899b.tar.gz |
unsigned stuff
Originally committed as revision 2726 to svn://svn.mplayerhq.hu/mplayer/trunk/postproc
Diffstat (limited to 'postproc/rgb2rgb.h')
-rw-r--r-- | postproc/rgb2rgb.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/postproc/rgb2rgb.h b/postproc/rgb2rgb.h index dc900a9744..4851725703 100644 --- a/postproc/rgb2rgb.h +++ b/postproc/rgb2rgb.h @@ -22,8 +22,10 @@ extern void palette8torgb15(const uint8_t *src, uint8_t *dst, unsigned num_pixel extern void palette8torgb24(const uint8_t *src, uint8_t *dst, unsigned num_pixels, const uint8_t *palette); extern void yv12toyuy2(const uint8_t *ysrc, const uint8_t *usrc, const uint8_t *vsrc, uint8_t *dst, - int width, int height, int lumStride, int chromStride, int dstStride); + unsigned int width, unsigned int height, + unsigned int lumStride, unsigned int chromStride, unsigned int dstStride); extern void yuy2toyv12(const uint8_t *src, uint8_t *ydst, uint8_t *udst, uint8_t *vdst, - int width, int height, int lumStride, int chromStride, int srcStride); + unsigned int width, unsigned int height, + unsigned int lumStride, unsigned int chromStride, unsigned int srcStride); #endif |