From: Ian Munro Date: Mon, 30 Jul 2007 09:52:36 +0000 (+0000) Subject: gst/bayer/gstbayer2rgb.c: Include our own "_stdint.h" instead of (which... X-Git-Tag: 1.19.3~507^2~20928 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=78a7ce11d93c81e193d1b258fd0f1bffa0ba3686;p=platform%2Fupstream%2Fgstreamer.git gst/bayer/gstbayer2rgb.c: Include our own "_stdint.h" instead of (which may not be available). Original commit message from CVS: Patch by: Ian Munro * gst/bayer/gstbayer2rgb.c: Include our own "_stdint.h" instead of (which may not be available). * gst/speed/gstspeed.h: Native HP-UX compiler dosn't seem to like enum typedefs before the actual enum was defined. * gst/vmnc/vmncdec.c: Fix wrong usage of GST_ELEMENT_ERROR macro (#461373). --- diff --git a/ChangeLog b/ChangeLog index d5f7bc6..ecd4123 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,18 @@ +2007-07-30 Tim-Philipp Müller + + Patch by: Ian Munro + + * gst/bayer/gstbayer2rgb.c: + Include our own "_stdint.h" instead of (which may not + be available). + + * gst/speed/gstspeed.h: + Native HP-UX compiler dosn't seem to like enum typedefs before the + actual enum was defined. + + * gst/vmnc/vmncdec.c: + Fix wrong usage of GST_ELEMENT_ERROR macro (#461373). + 2007-07-26 Edward Hervey * gst/real/gstrealaudiodec.c: (gst_real_audio_dec_setcaps): diff --git a/gst/bayer/gstbayer2rgb.c b/gst/bayer/gstbayer2rgb.c index 7c27886..f1f3f7f 100644 --- a/gst/bayer/gstbayer2rgb.c +++ b/gst/bayer/gstbayer2rgb.c @@ -32,7 +32,7 @@ #include #include #include -#include +#include "_stdint.h" #define GST_CAT_DEFAULT gst_bayer2rgb_debug GST_DEBUG_CATEGORY_STATIC (GST_CAT_DEFAULT); diff --git a/gst/speed/gstspeed.h b/gst/speed/gstspeed.h index 1ec737b..19b5c36 100644 --- a/gst/speed/gstspeed.h +++ b/gst/speed/gstspeed.h @@ -39,13 +39,14 @@ G_BEGIN_DECLS typedef struct _GstSpeed GstSpeed; typedef struct _GstSpeedClass GstSpeedClass; -typedef enum _GstSpeedFormat GstSpeedFormat; enum _GstSpeedFormat { GST_SPEED_FORMAT_INT, GST_SPEED_FORMAT_FLOAT }; +typedef enum _GstSpeedFormat GstSpeedFormat; + struct _GstSpeed { GstElement element; diff --git a/gst/vmnc/vmncdec.c b/gst/vmnc/vmncdec.c index 701b18e..e6c6f8a 100644 --- a/gst/vmnc/vmncdec.c +++ b/gst/vmnc/vmncdec.c @@ -993,7 +993,7 @@ vmnc_dec_chain_frame (GstVMncDec * dec, GstBuffer * inbuf, if (res < 0) { ret = GST_FLOW_ERROR; - GST_ELEMENT_ERROR (dec, STREAM, DECODE, NULL, ("Couldn't decode packet")); + GST_ELEMENT_ERROR (dec, STREAM, DECODE, (NULL), ("Couldn't decode packet")); } else { GST_DEBUG_OBJECT (dec, "read %d bytes of %d", res, len); /* inbuf may be NULL; that's ok */