summaryrefslogtreecommitdiffstats
path: root/gst/flx/flx_color.h
diff options
context:
space:
mode:
authorZeeshan Ali <zeenix@gmail.com>2005-12-11 16:43:42 +0000
committerZeeshan Ali <zeenix@gmail.com>2005-12-11 16:43:42 +0000
commit8b6d639c5dec7e488792ca67c70d9fda161ac0ce (patch)
tree23ef6b3d3b5bd5b1a534bda52985e29e715b8b63 /gst/flx/flx_color.h
parent81e11ca107dfb6efea2fea28a7186d2180cc3374 (diff)
Now flxdec works on big-endian machines as well.
Original commit message from CVS: Now flxdec works on big-endian machines as well.
Diffstat (limited to 'gst/flx/flx_color.h')
-rw-r--r--gst/flx/flx_color.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/gst/flx/flx_color.h b/gst/flx/flx_color.h
index d423ab87..673505b4 100644
--- a/gst/flx/flx_color.h
+++ b/gst/flx/flx_color.h
@@ -17,6 +17,8 @@
* Boston, MA 02111-1307, USA.
*/
+#include <gst/gst.h>
+
typedef enum {
FLX_COLORSPACE_RGB8,
FLX_COLORSPACE_RGB32,
@@ -31,7 +33,6 @@ struct _FlxColorSpaceConverter {
guchar palvec[768];
};
-
void flx_colorspace_converter_destroy(FlxColorSpaceConverter *flxpal);
void flx_colorspace_convert(FlxColorSpaceConverter *flxpal, guchar *src, guchar *dest);
FlxColorSpaceConverter * flx_colorspace_converter_new(gint width, gint height);