gst/videotestsrc/videotestsrc.h: Use GLib types here (that way we don't have to inclu...
authorTim-Philipp Müller <tim@centricular.net>
Tue, 10 Jan 2006 10:06:53 +0000 (10:06 +0000)
committerTim-Philipp Müller <tim@centricular.net>
Tue, 10 Jan 2006 10:06:53 +0000 (10:06 +0000)
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).

ChangeLog
gst/videotestsrc/videotestsrc.h

index bc10a37..8977a6a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,13 @@
 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
 
+       * 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  <tim at centricular dot net>
+
        * 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):
index e9de7d9..e3059f8 100644 (file)
 #ifndef __VIDEO_TEST_SRC_H__
 #define __VIDEO_TEST_SRC_H__
 
-#include "_stdint.h"
+#include <glib.h>
 
 
 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;