From: Tim-Philipp Müller Date: Tue, 10 Jan 2006 10:06:53 +0000 (+0000) Subject: gst/videotestsrc/videotestsrc.h: Use GLib types here (that way we don't have to inclu... X-Git-Tag: RELEASE-0_10_2~22 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0e349ed810ae97cb21c168581a0cb9cac309dd27;p=platform%2Fupstream%2Fgst-plugins-base.git gst/videotestsrc/videotestsrc.h: Use GLib types here (that way we don't have to include the generated _stdint.h heade... Original commit message from CVS: * 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). --- diff --git a/ChangeLog b/ChangeLog index bc10a37..8977a6a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,13 @@ 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), (gst_ring_buffer_set_flushing), (gst_ring_buffer_start), (gst_ring_buffer_pause), (wait_segment): diff --git a/gst/videotestsrc/videotestsrc.h b/gst/videotestsrc/videotestsrc.h index e9de7d9..e3059f8 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;