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).
This commit is contained in:
Tim-Philipp Müller 2006-01-10 10:06:53 +00:00
parent 8ec22e812b
commit 0e349ed810
2 changed files with 11 additions and 3 deletions

View file

@ -1,3 +1,11 @@
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),

View file

@ -20,12 +20,12 @@
#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;