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/frei0r.h | |
parent | 57095d302d0daaf344aa6da261f638746cf62c1f (diff) | |
download | gstreamer-plugins-bad-512c66d8ba25c782e0c68782361722cb3d4974bd.tar.gz |
frei0r: convert uint32_t to guint32
Diffstat (limited to 'gst/frei0r/frei0r.h')
-rw-r--r-- | gst/frei0r/frei0r.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gst/frei0r/frei0r.h b/gst/frei0r/frei0r.h index 48c942dd4..9aed4453b 100644 --- a/gst/frei0r/frei0r.h +++ b/gst/frei0r/frei0r.h @@ -200,7 +200,7 @@ #ifndef INCLUDED_FREI0R_H #define INCLUDED_FREI0R_H -#include <inttypes.h> +#include <glib.h> /** * The frei0r API major version @@ -554,7 +554,7 @@ void f0r_get_param_value(f0r_instance_t instance, * \see f0r_update2 */ void f0r_update(f0r_instance_t instance, - double time, const uint32_t* inframe, uint32_t* outframe); + double time, const guint32* inframe, guint32* outframe); //--------------------------------------------------------------------------- @@ -581,10 +581,10 @@ void f0r_update(f0r_instance_t instance, */ void f0r_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); //--------------------------------------------------------------------------- #endif |