[multiqueue] problem on 64bit systems with "use-buffering" property?

classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

[multiqueue] problem on 64bit systems with "use-buffering" property?

Thomas Loewe
Hi,

is there a problem with multiqueue and the "use-buffering" property on 64bit systems?

My program uses this option and it works fine on 32bit windows and linux. On 64bit linux there is no buffering message or only one time with 0%.

Any idea?

Thanks,
Thomas
Reply | Threaded
Open this post in threaded view
|

Re: [multiqueue] problem on 64bit systems with "use-buffering" property?

Stefan Sauer
Am 08.05.2010 16:30, schrieb Thomas Loewe:
>
> Hi,
>
> is there a problem with multiqueue and the "use-buffering" property on 64bit
> systems?
>
> My program uses this option and it works fine on 32bit windows and linux. On
> 64bit linux there is no buffering message or only one time with 0%.

please tell the part of the code where you set it. If you set other properties
in the sam g_object_set statement and some properties are 64bit ones and you use
constants for those and you don't ensure the correct size (e.g. by using
G_GUINT64_CONSTANT) you can easily mess up the varargs list.

Stefan

>
> Any idea?
>
> Thanks,
> Thomas


------------------------------------------------------------------------------

_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel
Reply | Threaded
Open this post in threaded view
|

Re: [multiqueue] problem on 64bit systems with "use-buffering" property?

Thomas Loewe
> If you set other properties in the sam g_object_set statement and some properties are 64bit ones and you use constants for those and you don't ensure the correct size (e.g. by using G_GUINT64_CONSTANT) you can easily mess up the varargs list.

Bingo, thank you for showing me the right direction.

Thomas