mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
use int64 for frame-time
Original commit message from CVS: use int64 for frame-time
This commit is contained in:
parent
2a6ab3709a
commit
1300e3e874
3 changed files with 4 additions and 4 deletions
|
@ -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;
|
||||
|
|
|
@ -56,7 +56,7 @@ struct _GstVideoSink {
|
|||
|
||||
gint width, height;
|
||||
gint frames_displayed;
|
||||
guint64 frame_time;
|
||||
gint64 frame_time;
|
||||
|
||||
GstClock *clock;
|
||||
|
||||
|
|
|
@ -56,7 +56,7 @@ struct _GstVideoSink {
|
|||
|
||||
gint width, height;
|
||||
gint frames_displayed;
|
||||
guint64 frame_time;
|
||||
gint64 frame_time;
|
||||
|
||||
GstClock *clock;
|
||||
|
||||
|
|
Loading…
Reference in a new issue