diff options
author | David Schleef <ds@schleef.org> | 2010-12-30 19:03:14 -0800 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2010-12-30 19:25:46 -0800 |
commit | 512c66d8ba25c782e0c68782361722cb3d4974bd (patch) | |
tree | 4d3be1326bd54faed1ea94e66fe239d8a116ea7f /gst/frei0r/gstfrei0r.h | |
parent | 57095d302d0daaf344aa6da261f638746cf62c1f (diff) | |
download | gstreamer-plugins-bad-512c66d8ba25c782e0c68782361722cb3d4974bd.tar.gz |
frei0r: convert uint32_t to guint32
Diffstat (limited to 'gst/frei0r/gstfrei0r.h')
-rw-r--r-- | gst/frei0r/gstfrei0r.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gst/frei0r/gstfrei0r.h b/gst/frei0r/gstfrei0r.h index af2126542..490d6aae9 100644 --- a/gst/frei0r/gstfrei0r.h +++ b/gst/frei0r/gstfrei0r.h @@ -66,13 +66,13 @@ struct _GstFrei0rFuncTable { f0r_param_t param, int param_index); void (*update) (f0r_instance_t instance, - double time, const uint32_t* inframe, uint32_t* outframe); + double time, const guint32* inframe, guint32* outframe); void (*update2) (f0r_instance_t instance, double time, - const uint32_t* inframe1, - const uint32_t* inframe2, - const uint32_t* inframe3, - uint32_t* outframe); + const guint32* inframe1, + const guint32* inframe2, + const guint32* inframe3, + guint32* outframe); }; typedef enum { |