[vlc-devel] commit: libvlc API: Fix an error in libvlc_video_set_marquee_option_as_int( ) ( Cyril Mathé )

git version control git at videolan.org
Mon Jun 29 17:38:44 CEST 2009


vlc | branch: master | Cyril Mathé <cmathe at actech-innovation.com> | Mon Jun 29 11:28:16 2009 +0200| [f6d8617337390ac8c462e3c2688cbae9adf6abd8] | committer: Rémi Denis-Courmont 

libvlc API: Fix an error in libvlc_video_set_marquee_option_as_int()

Signed-off-by: Rémi Denis-Courmont <remi at remlab.net>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=f6d8617337390ac8c462e3c2688cbae9adf6abd8
---

 src/control/video.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/control/video.c b/src/control/video.c
index 330637d..8ef79da 100644
--- a/src/control/video.c
+++ b/src/control/video.c
@@ -747,7 +747,7 @@ void libvlc_video_set_marquee_option_as_int( libvlc_media_player_t *p_mi,
                                           libvlc_video_marquee_int_option_t option,
                                           int value, libvlc_exception_t *p_e )
 {
-    const char * identifier = get_marquee_string_option_identifier(option);
+    const char * identifier = get_marquee_int_option_identifier(option);
     if(!identifier)
     {
         libvlc_exception_raise( p_e, "This option is not available" );




More information about the vlc-devel mailing list