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/bayer | |
parent | 1b0a8436b41ad0925c99ccbb982e6911fd56a986 (diff) | |
download | gstreamer-plugins-bad-78a7ce11d93c81e193d1b258fd0f1bffa0ba3686.tar.gz |
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/bayer')
-rw-r--r-- | gst/bayer/gstbayer2rgb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/bayer/gstbayer2rgb.c b/gst/bayer/gstbayer2rgb.c index 7c278869a..f1f3f7fbe 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); |