diff --git a/ChangeLog b/ChangeLog index bc10a374d4..8977a6ad0c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2006-01-10 Tim-Philipp Müller + + * gst/videotestsrc/videotestsrc.h: + Use GLib types here (that way we don't have to include the + generated _stdint.h header, which makes life easier for win32 + folks that don't use autotools for the build) (#325990, patch + by: Sergey Scobich). + 2006-01-10 Tim-Philipp Müller * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init), diff --git a/gst/videotestsrc/videotestsrc.h b/gst/videotestsrc/videotestsrc.h index e9de7d9611..e3059f8aba 100644 --- a/gst/videotestsrc/videotestsrc.h +++ b/gst/videotestsrc/videotestsrc.h @@ -20,12 +20,12 @@ #ifndef __VIDEO_TEST_SRC_H__ #define __VIDEO_TEST_SRC_H__ -#include "_stdint.h" +#include struct vts_color_struct { - uint8_t Y, U, V; - uint8_t R, G, B; + guint8 Y, U, V; + guint8 R, G, B; }; typedef struct paintinfo_struct paintinfo;