summaryrefslogtreecommitdiffstats
path: root/ext/gdk_pixbuf/gstgdkpixbuf.h
diff options
context:
space:
mode:
authorEdgard Lima <edgard.lima@indt.org.br>2006-02-24 19:51:29 +0000
committerEdgard Lima <edgard.lima@indt.org.br>2006-02-24 19:51:29 +0000
commit73a6055bdf16990ff6abaed612b8527db439a9f8 (patch)
tree3debfbff45726f289fcb709da89881795d1aa790 /ext/gdk_pixbuf/gstgdkpixbuf.h
parent96c1cd6e0a6c1328eed7bbf680ecfbad82c92c72 (diff)
I'm too lazy to comment this
Original commit message from CVS: Gdkpixbuf ported from 0.8 to 0.10 by Renato Filho <renato.filho@indt.org.br>. gst_loader and gdkpixbufanimation still need port.
Diffstat (limited to 'ext/gdk_pixbuf/gstgdkpixbuf.h')
-rw-r--r--ext/gdk_pixbuf/gstgdkpixbuf.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/ext/gdk_pixbuf/gstgdkpixbuf.h b/ext/gdk_pixbuf/gstgdkpixbuf.h
index 4a1f9a3d..a6f527a2 100644
--- a/ext/gdk_pixbuf/gstgdkpixbuf.h
+++ b/ext/gdk_pixbuf/gstgdkpixbuf.h
@@ -28,15 +28,15 @@
G_BEGIN_DECLS
/* #define's don't like whitespacey bits */
-#define GST_TYPE_GDK_PIXBUF \
+#define GST_TYPE_GDK_PIXBUF \
(gst_gdk_pixbuf_get_type())
-#define GST_GDK_PIXBUF(obj) \
+#define GST_GDK_PIXBUF(obj) \
(G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_GDK_PIXBUF,GstGdkPixbuf))
-#define GST_GDK_PIXBUF_CLASS(klass) \
+#define GST_GDK_PIXBUF_CLASS(klass) \
(G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_GDK_PIXBUF,GstGdkPixbuf))
-#define GST_IS_GDK_PIXBUF(obj) \
+#define GST_IS_GDK_PIXBUF(obj) \
(G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_GDK_PIXBUF))
-#define GST_IS_GDK_PIXBUF_CLASS(obj) \
+#define GST_IS_GDK_PIXBUF_CLASS(obj) \
(G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_GDK_PIXBUF))
typedef struct _GstGdkPixbuf GstGdkPixbuf;
@@ -56,8 +56,8 @@ struct _GstGdkPixbuf
int rowstride;
unsigned int image_size;
- gint fps_n;
- gint fps_d;
+ gint framerate_numerator;
+ gint framerate_denominator;
};
struct _GstGdkPixbufClass