diff options
author | Ian Munro <imunro@netspace.net.au> | 2007-07-30 09:52:36 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2007-07-30 09:52:36 +0000 |
commit | 78a7ce11d93c81e193d1b258fd0f1bffa0ba3686 (patch) | |
tree | b3ca77e2863529bd4ef81854d2d70c69cb157e4e /gst/speed/gstspeed.h | |
parent | 1b0a8436b41ad0925c99ccbb982e6911fd56a986 (diff) | |
download | gst-plugins-bad-78a7ce11d93c81e193d1b258fd0f1bffa0ba3686.tar.gz gst-plugins-bad-78a7ce11d93c81e193d1b258fd0f1bffa0ba3686.tar.bz2 gst-plugins-bad-78a7ce11d93c81e193d1b258fd0f1bffa0ba3686.zip |
gst/bayer/gstbayer2rgb.c: Include our own "_stdint.h" instead of <stdint.h> (which may not be available).
Original commit message from CVS:
Patch by: Ian Munro <imunro at netspace net au>
* gst/bayer/gstbayer2rgb.c:
Include our own "_stdint.h" instead of <stdint.h> (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).
Diffstat (limited to 'gst/speed/gstspeed.h')
-rw-r--r-- | gst/speed/gstspeed.h | 3 |
1 files changed, 2 insertions, 1 deletions
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; |