Page 1 of 1

libvlc_video_marquee_int_option_t def.

Posted: 20 Oct 2010 03:20
by Diamonddrake
I can't seem to find the current definition of the enum

libvlc_video_marquee_int_option_t

if anyone can help me out, i would appreciate it.

Re: libvlc_video_marquee_int_option_t def.

Posted: 20 Oct 2010 16:59
by sherington
I can't seem to find the current definition of the enum

libvlc_video_marquee_int_option_t

if anyone can help me out, i would appreciate it.
Is this what you want instead?

From libvlc_media_player.h,

Code: Select all

typedef enum libvlc_video_marquee_option_t { libvlc_marquee_Enable = 0, libvlc_marquee_Text, /** string argument */ libvlc_marquee_Color, libvlc_marquee_Opacity, libvlc_marquee_Position, libvlc_marquee_Refresh, libvlc_marquee_Size, libvlc_marquee_Timeout, libvlc_marquee_X, libvlc_marquee_Y } libvlc_video_marquee_option_t;

Re: libvlc_video_marquee_int_option_t def.

Posted: 21 Oct 2010 23:33
by Diamonddrake
that's the one, I couldn't quite find it in the source, I ended up finding the bynumber function somewhere and making my own. I am using this in C#. But I will update my code to use the correct enum titles.

Thank you.

Re: libvlc_video_marquee_int_option_t def.

Posted: 22 May 2014 07:24
by jianxia
in function descrption, it's said "libvlc_video_marquee_int_option_t ",
in enum, the name is "libvlc_video_marquee_option_t".