ext/mpeg2dec/gstmpeg2dec.c: Change uint to unsigned int. (fixes #167128)

Original commit message from CVS:
* ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer): Change uint to
unsigned int. (fixes #167128)
This commit is contained in:
David Schleef 2005-02-11 22:25:34 +00:00
parent ae29448b79
commit 5e6f428834
2 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,8 @@
2005-02-11 David Schleef <ds@schleef.org>
* ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer): Change uint to
unsigned int. (fixes #167128)
2005-02-11 David Schleef <ds@schleef.org>
* gst/librfb/Makefile.am: Testing stuff before committing is

View file

@ -428,9 +428,9 @@ crop_buffer (GstMpeg2dec * mpeg2dec, GstBuffer * input)
{
unsigned char *in_data;
unsigned char *out_data;
uint h_subsample;
uint v_subsample;
uint line;
unsigned int h_subsample;
unsigned int v_subsample;
unsigned int line;
GstBuffer *outbuf = input;
/*We crop only if the target region is smaller than the input one */