After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 325990 - patch videotestsrc for using glib types
patch videotestsrc for using glib types
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-plugins-base
git master
Other Windows
: Normal trivial
: 0.10.2
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2006-01-06 15:28 UTC by Sergey Scobich
Modified: 2006-01-10 10:12 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Sergey Scobich 2006-01-06 15:28:26 UTC
Index: ./gst-plugins-base/gst/videotestsrc/videotestsrc.h
===================================================================
RCS file: /cvs/gstreamer/gst-plugins-base/gst/videotestsrc/videotestsrc.h,v
retrieving revision 1.15
diff -u -r1.15 videotestsrc.h
--- ./gst-plugins-base/gst/videotestsrc/videotestsrc.h	6 Dec 2005 19:42:00 -0000	1.15
+++ ./gst-plugins-base/gst/videotestsrc/videotestsrc.h	6 Jan 2006 15:25:09 -0000
@@ -20,12 +20,10 @@
 #ifndef __VIDEO_TEST_SRC_H__
 #define __VIDEO_TEST_SRC_H__
 
-#include "_stdint.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;
Comment 1 Tim-Philipp Müller 2006-01-10 10:12:46 UTC
Applied, thanks! (And btw, it's usually a good idea to provide a rationale for a patch as well, so we don't have to second-guess or try to remember what was said on IRC days ago ;))

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).