[Bug 759357] Unable to set max-file-duration with 10 or more minutes value. It overflows.

GStreamer (GNOME Bugzilla) bugzilla at gnome.org
Fri Dec 11 09:26:41 PST 2015


https://bugzilla.gnome.org/show_bug.cgi?id=759357

--- Comment #3 from AlexBolotsin <alexbolotsin at gmail.com> ---
I've tried:
  guint64 value = 600 * GST_SECOND;
  g_object_set (multifilesink, "max-file-duration", value , NULL);


As someone suggested me in irc:

  guint64 value = 600 * GST_SECOND;
  g_object_set (multifilesink, "max-file-duration", (guint64)value , NULL);


Tried to set it up with GValue:

  guint64 value = 600 * GST_SECOND;
  Gvalue gvalue = g_value_uint64(value, &gvalue);
  g_object_set_value(mfs, "max-file-duration", &gvalue);


After that I've tried to lure into structure and set variable directly.

I forgot to mention my system. So here it is.

3.19.0-33-generic #38~14.04.1-Ubuntu SMP Fri Nov 6 18:17:28 UTC 2015 x86_64
x86_64 x86_64 GNU/Linux

Thx a lot for your attention.

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are the assignee for the bug.


More information about the gstreamer-bugs mailing list