diff options
Diffstat (limited to 'gst')
-rw-r--r-- | gst/bayer/gstbayer2rgb.c | 2 | ||||
-rw-r--r-- | gst/speed/gstspeed.h | 3 | ||||
-rw-r--r-- | gst/vmnc/vmncdec.c | 2 |
3 files changed, 4 insertions, 3 deletions
diff --git a/gst/bayer/gstbayer2rgb.c b/gst/bayer/gstbayer2rgb.c index 7c278869..f1f3f7fb 100644 --- a/gst/bayer/gstbayer2rgb.c +++ b/gst/bayer/gstbayer2rgb.c @@ -32,7 +32,7 @@ #include <gst/base/gstbasetransform.h> #include <gst/video/video.h> #include <string.h> -#include <stdint.h> +#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 1ec737b1..19b5c36c 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 701b18e9..e6c6f8ae 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 */ |