mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-30 13:41:48 +00:00
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:
parent
ae29448b79
commit
5e6f428834
2 changed files with 8 additions and 3 deletions
|
@ -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>
|
2005-02-11 David Schleef <ds@schleef.org>
|
||||||
|
|
||||||
* gst/librfb/Makefile.am: Testing stuff before committing is
|
* gst/librfb/Makefile.am: Testing stuff before committing is
|
||||||
|
|
|
@ -428,9 +428,9 @@ crop_buffer (GstMpeg2dec * mpeg2dec, GstBuffer * input)
|
||||||
{
|
{
|
||||||
unsigned char *in_data;
|
unsigned char *in_data;
|
||||||
unsigned char *out_data;
|
unsigned char *out_data;
|
||||||
uint h_subsample;
|
unsigned int h_subsample;
|
||||||
uint v_subsample;
|
unsigned int v_subsample;
|
||||||
uint line;
|
unsigned int line;
|
||||||
GstBuffer *outbuf = input;
|
GstBuffer *outbuf = input;
|
||||||
|
|
||||||
/*We crop only if the target region is smaller than the input one */
|
/*We crop only if the target region is smaller than the input one */
|
||||||
|
|
Loading…
Reference in a new issue