use int64 for frame-time

Original commit message from CVS:
use int64 for frame-time
This commit is contained in:
David I. Lehn 2003-11-07 03:01:21 +00:00
parent 2a6ab3709a
commit 1300e3e874
3 changed files with 4 additions and 4 deletions

View file

@ -155,8 +155,8 @@ gst_videosink_class_init (GstVideoSinkClass *klass)
G_MININT,G_MAXINT, 0, G_PARAM_READABLE));
g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_FRAME_TIME,
g_param_spec_int ("frame_time", "Frame time", "The interval between frames",
G_MININT, G_MAXINT, 0, G_PARAM_READABLE));
g_param_spec_int64 ("frame_time", "Frame time", "The interval between frames",
G_MININT64, G_MAXINT64, 0, G_PARAM_READABLE));
gobject_class->set_property = gst_videosink_set_property;
gobject_class->get_property = gst_videosink_get_property;

View file

@ -56,7 +56,7 @@ struct _GstVideoSink {
gint width, height;
gint frames_displayed;
guint64 frame_time;
gint64 frame_time;
GstClock *clock;

View file

@ -56,7 +56,7 @@ struct _GstVideoSink {
gint width, height;
gint frames_displayed;
guint64 frame_time;
gint64 frame_time;
GstClock *clock;