diff options
author | Tim-Philipp Müller <tim@centricular.net> | 2005-02-08 10:37:43 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.net> | 2005-02-08 10:37:43 +0000 |
commit | 0ffbeb03c115adf8dabcbf1f9b0fa3e7e1418e04 (patch) | |
tree | a9032fe3f60b52947d5bc9067b8b9c6d334e4268 /ext/tarkin/yuv.h | |
parent | 6010757ef6c84af13e2869c9cd462ce466346845 (diff) | |
download | gst-plugins-bad-0ffbeb03c115adf8dabcbf1f9b0fa3e7e1418e04.tar.gz gst-plugins-bad-0ffbeb03c115adf8dabcbf1f9b0fa3e7e1418e04.tar.bz2 gst-plugins-bad-0ffbeb03c115adf8dabcbf1f9b0fa3e7e1418e04.zip |
Include "_stdint.h" instead of <stdint.h>. Fixes build on systems that do not have stdint.h, like Solaris 9 (fixes #1...
Original commit message from CVS:
Include "_stdint.h" instead of <stdint.h>. Fixes build on systems that do not have stdint.h, like Solaris 9 (fixes #166631).
Diffstat (limited to 'ext/tarkin/yuv.h')
-rw-r--r-- | ext/tarkin/yuv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/tarkin/yuv.h b/ext/tarkin/yuv.h index 42ceb072..036fc354 100644 --- a/ext/tarkin/yuv.h +++ b/ext/tarkin/yuv.h @@ -2,7 +2,7 @@ #ifndef __YUV_H #define __YUV_H -#include <stdint.h> +#include "_stdint.h" #include "wavelet.h" extern void rgb24_to_yuv (uint8_t *rgb, Wavelet3DBuf *yuv [], uint32_t frame); |