]> git.sesse.net Git - vlc/blob - src/control/video.c
Fix libvlc video functions when there is no input (fixes #3812)
[vlc] / src / control / video.c
1 /*****************************************************************************
2  * video.c: libvlc new API video functions
3  *****************************************************************************
4  * Copyright (C) 2005-2010 the VideoLAN team
5  *
6  * $Id$
7  *
8  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
9  *          Filippo Carone <littlejohn@videolan.org>
10  *          Jean-Paul Saman <jpsaman _at_ m2x _dot_ nl>
11  *          Damien Fouilleul <damienf a_t videolan dot org>
12  *
13  * This program is free software; you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License as published by
15  * the Free Software Foundation; either version 2 of the License, or
16  * (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
26  *****************************************************************************/
27
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
31
32 #include <vlc/libvlc.h>
33 #include <vlc/libvlc_media.h>
34 #include <vlc/libvlc_media_player.h>
35
36 #include <vlc_common.h>
37 #include <vlc_input.h>
38 #include <vlc_vout.h>
39
40 #include "media_player_internal.h"
41 #include <assert.h>
42
43 /*
44  * Remember to release the returned vout_thread_t.
45  */
46 static vout_thread_t **GetVouts( libvlc_media_player_t *p_mi, size_t *n )
47 {
48     input_thread_t *p_input = libvlc_get_input_thread( p_mi );
49     if( !p_input )
50     {
51         *n = 0;
52         return NULL;
53     }
54
55     vout_thread_t **pp_vouts;
56     if (input_Control( p_input, INPUT_GET_VOUTS, &pp_vouts, n))
57     {
58         *n = 0;
59         pp_vouts = NULL;
60     }
61     vlc_object_release (p_input);
62     return pp_vouts;
63 }
64
65 static vout_thread_t *GetVout (libvlc_media_player_t *mp, size_t num)
66 {
67     vout_thread_t *p_vout = NULL;
68     size_t n;
69     vout_thread_t **pp_vouts = GetVouts (mp, &n);
70     if (pp_vouts == NULL)
71         goto err;
72
73     if (num < n)
74         p_vout = pp_vouts[num];
75
76     for (size_t i = 0; i < n; i++)
77         if (i != num)
78             vlc_object_release (pp_vouts[i]);
79     free (pp_vouts);
80
81     if (p_vout == NULL)
82 err:
83         libvlc_printerr ("Video output not active");
84     return p_vout;
85 }
86
87 /**********************************************************************
88  * Exported functions
89  **********************************************************************/
90
91 void libvlc_set_fullscreen( libvlc_media_player_t *p_mi, int b_fullscreen )
92 {
93     /* This will work even if the video is not currently active */
94     var_SetBool (p_mi, "fullscreen", !!b_fullscreen);
95
96     /* Apply to current video outputs (if any) */
97     size_t n;
98     vout_thread_t **pp_vouts = GetVouts (p_mi, &n);
99     for (size_t i = 0; i < n; i++)
100     {
101         var_SetBool (pp_vouts[i], "fullscreen", b_fullscreen);
102         vlc_object_release (pp_vouts[i]);
103     }
104     free (pp_vouts);
105 }
106
107 int libvlc_get_fullscreen( libvlc_media_player_t *p_mi )
108 {
109     return var_GetBool (p_mi, "fullscreen");
110 }
111
112 void libvlc_toggle_fullscreen( libvlc_media_player_t *p_mi )
113 {
114     bool b_fullscreen = var_ToggleBool (p_mi, "fullscreen");
115
116     /* Apply to current video outputs (if any) */
117     size_t n;
118     vout_thread_t **pp_vouts = GetVouts (p_mi, &n);
119     for (size_t i = 0; i < n; i++)
120     {
121         vout_thread_t *p_vout = pp_vouts[i];
122
123         var_SetBool (p_vout, "fullscreen", b_fullscreen);
124         vlc_object_release (p_vout);
125     }
126     free (pp_vouts);
127 }
128
129 void libvlc_video_set_key_input( libvlc_media_player_t *p_mi, unsigned on )
130 {
131     var_SetBool (p_mi, "keyboard-events", !!on);
132 }
133
134 void libvlc_video_set_mouse_input( libvlc_media_player_t *p_mi, unsigned on )
135 {
136     var_SetBool (p_mi, "mouse-events", !!on);
137 }
138
139 int
140 libvlc_video_take_snapshot( libvlc_media_player_t *p_mi, unsigned num,
141                             const char *psz_filepath,
142                             unsigned int i_width, unsigned int i_height )
143 {
144     assert( psz_filepath );
145
146     vout_thread_t *p_vout = GetVout (p_mi, num);
147     if (p_vout == NULL)
148         return -1;
149
150     /* FIXME: This is not atomic. Someone else could change the values,
151      * at least in theory. */
152     var_SetInteger( p_vout, "snapshot-width", i_width);
153     var_SetInteger( p_vout, "snapshot-height", i_height );
154     var_SetString( p_vout, "snapshot-path", psz_filepath );
155     var_SetString( p_vout, "snapshot-format", "png" );
156     var_TriggerCallback (p_vout, "video-snapshot" );
157     return 0;
158 }
159
160 int libvlc_video_get_size( libvlc_media_player_t *p_mi, unsigned num,
161                            unsigned *restrict px, unsigned *restrict py )
162 {
163 #if 0
164     vout_thread_t *p_vout = GetVout (p_mi, num);
165     if (p_vout == NULL)
166         return -1;
167
168     *px = p_vout->i_window_height;
169     *py = p_vout->i_window_width;
170     vlc_object_release (p_vout);
171     return 0;
172 #else
173     return -1;
174 #endif
175 }
176
177 int libvlc_video_get_height( libvlc_media_player_t *p_mi )
178 {
179     unsigned height, width;
180
181     if (libvlc_video_get_size (p_mi, 0, &height, &width))
182         return 0;
183     return height;
184 }
185
186 int libvlc_video_get_width( libvlc_media_player_t *p_mi )
187 {
188     unsigned height, width;
189
190     if (libvlc_video_get_size (p_mi, 0, &height, &width))
191         return 0;
192     return width;
193 }
194
195 int libvlc_video_get_cursor( libvlc_media_player_t *mp, unsigned num,
196                              int *restrict px, int *restrict py )
197 {
198     vout_thread_t *p_vout = GetVout (mp, num);
199     if (p_vout == NULL)
200         return -1;
201
202     var_GetCoords (p_vout, "mouse-moved", px, py);
203     vlc_object_release (p_vout);
204     return 0;
205 }
206
207 unsigned libvlc_media_player_has_vout( libvlc_media_player_t *p_mi )
208 {
209     size_t n;
210     vout_thread_t **pp_vouts = GetVouts (p_mi, &n);
211     for (size_t i = 0; i < n; i++)
212         vlc_object_release (pp_vouts[i]);
213     free (pp_vouts);
214     return n;
215 }
216
217 float libvlc_video_get_scale( libvlc_media_player_t *mp )
218 {
219     float f_scale = var_GetFloat (mp, "scale");
220     if (var_GetBool (mp, "autoscale"))
221         f_scale = 0.;
222     return f_scale;
223 }
224
225 void libvlc_video_set_scale( libvlc_media_player_t *p_mp, float f_scale )
226 {
227     if (f_scale != 0.)
228         var_SetFloat (p_mp, "scale", f_scale);
229     var_SetBool (p_mp, "autoscale", f_scale == 0.);
230
231     /* Apply to current video outputs (if any) */
232     size_t n;
233     vout_thread_t **pp_vouts = GetVouts (p_mp, &n);
234     for (size_t i = 0; i < n; i++)
235     {
236         vout_thread_t *p_vout = pp_vouts[i];
237
238         if (f_scale != 0.)
239             var_SetFloat (p_vout, "scale", f_scale);
240         var_SetBool (p_vout, "autoscale", f_scale == 0.);
241         vlc_object_release (p_vout);
242     }
243     free (pp_vouts);
244 }
245
246 char *libvlc_video_get_aspect_ratio( libvlc_media_player_t *p_mi )
247 {
248     return var_GetNonEmptyString (p_mi, "aspect-ratio");
249 }
250
251 void libvlc_video_set_aspect_ratio( libvlc_media_player_t *p_mi,
252                                     const char *psz_aspect )
253 {
254     if (psz_aspect == NULL)
255         psz_aspect = "";
256     var_SetString (p_mi, "aspect-ratio", psz_aspect);
257
258     size_t n;
259     vout_thread_t **pp_vouts = GetVouts (p_mi, &n);
260     for (size_t i = 0; i < n; i++)
261     {
262         vout_thread_t *p_vout = pp_vouts[i];
263
264         var_SetString (p_vout, "aspect-ratio", psz_aspect);
265         vlc_object_release (p_vout);
266     }
267     free (pp_vouts);
268 }
269
270 int libvlc_video_get_spu( libvlc_media_player_t *p_mi )
271 {
272     input_thread_t *p_input_thread = libvlc_get_input_thread( p_mi );
273     vlc_value_t val_list;
274     vlc_value_t val;
275     int i_spu = -1;
276     int i_ret = -1;
277     int i;
278
279     if( !p_input_thread )
280     {
281         libvlc_printerr( "No active input" );
282         return -1;
283     }
284
285     i_ret = var_Get( p_input_thread, "spu-es", &val );
286     if( i_ret < 0 )
287     {
288         vlc_object_release( p_input_thread );
289         libvlc_printerr( "Subtitle informations not found" );
290         return -1;
291     }
292
293     var_Change( p_input_thread, "spu-es", VLC_VAR_GETCHOICES, &val_list, NULL );
294     for( i = 0; i < val_list.p_list->i_count; i++ )
295     {
296         if( val.i_int == val_list.p_list->p_values[i].i_int )
297         {
298             i_spu = i;
299             break;
300         }
301     }
302     var_FreeList( &val_list, NULL );
303     vlc_object_release( p_input_thread );
304     return i_spu;
305 }
306
307 int libvlc_video_get_spu_count( libvlc_media_player_t *p_mi )
308 {
309     input_thread_t *p_input_thread = libvlc_get_input_thread( p_mi );
310     int i_spu_count;
311
312     if( !p_input_thread )
313         return 0;
314
315     i_spu_count = var_CountChoices( p_input_thread, "spu-es" );
316     vlc_object_release( p_input_thread );
317     return i_spu_count;
318 }
319
320 libvlc_track_description_t *
321         libvlc_video_get_spu_description( libvlc_media_player_t *p_mi )
322 {
323     return libvlc_get_track_description( p_mi, "spu-es" );
324 }
325
326 int libvlc_video_set_spu( libvlc_media_player_t *p_mi, unsigned i_spu )
327 {
328     input_thread_t *p_input_thread = libvlc_get_input_thread( p_mi );
329     vlc_value_t list;
330     int i_ret = 0;
331
332     if( !p_input_thread )
333         return -1;
334
335     var_Change (p_input_thread, "spu-es", VLC_VAR_GETCHOICES, &list, NULL);
336
337     if (i_spu > (unsigned)list.p_list->i_count)
338     {
339         libvlc_printerr( "Subtitle number out of range (%u/%u)",
340                          i_spu, list.p_list->i_count );
341         i_ret = -1;
342         goto end;
343     }
344     var_SetInteger (p_input_thread, "spu-es",
345                     list.p_list->p_values[i_spu].i_int);
346 end:
347     vlc_object_release (p_input_thread);
348     var_FreeList (&list, NULL);
349     return i_ret;
350 }
351
352 int libvlc_video_set_subtitle_file( libvlc_media_player_t *p_mi,
353                                     const char *psz_subtitle )
354 {
355     input_thread_t *p_input_thread = libvlc_get_input_thread ( p_mi );
356     bool b_ret = false;
357
358     if( p_input_thread )
359     {
360         if( !input_AddSubtitle( p_input_thread, psz_subtitle, true ) )
361             b_ret = true;
362         vlc_object_release( p_input_thread );
363     }
364     return b_ret;
365 }
366
367 libvlc_track_description_t *
368         libvlc_video_get_title_description( libvlc_media_player_t *p_mi )
369 {
370     return libvlc_get_track_description( p_mi, "title" );
371 }
372
373 libvlc_track_description_t *
374         libvlc_video_get_chapter_description( libvlc_media_player_t *p_mi,
375                                               int i_title )
376 {
377     char psz_title[12];
378     sprintf( psz_title,  "title %2i", i_title );
379     return libvlc_get_track_description( p_mi, psz_title );
380 }
381
382 char *libvlc_video_get_crop_geometry (libvlc_media_player_t *p_mi)
383 {
384     return var_GetNonEmptyString (p_mi, "crop");
385 }
386
387 void libvlc_video_set_crop_geometry( libvlc_media_player_t *p_mi,
388                                      const char *psz_geometry )
389 {
390     if (psz_geometry == NULL)
391         psz_geometry = "";
392
393     var_SetString (p_mi, "crop", psz_geometry);
394
395     size_t n;
396     vout_thread_t **pp_vouts = GetVouts (p_mi, &n);
397
398     for (size_t i = 0; i < n; i++)
399     {
400         vout_thread_t *p_vout = pp_vouts[i];
401
402         var_SetString (p_vout, "crop", psz_geometry);
403         vlc_object_release (p_vout);
404     }
405     free (pp_vouts);
406 }
407
408 int libvlc_video_get_teletext( libvlc_media_player_t *p_mi )
409 {
410     return var_GetInteger (p_mi, "vbi-page");
411 }
412
413 void libvlc_video_set_teletext( libvlc_media_player_t *p_mi, int i_page )
414 {
415     input_thread_t *p_input_thread;
416     vlc_object_t *p_zvbi = NULL;
417     int telx;
418
419     var_SetInteger (p_mi, "vbi-page", i_page);
420
421     p_input_thread = libvlc_get_input_thread( p_mi );
422     if( !p_input_thread ) return;
423
424     if( var_CountChoices( p_input_thread, "teletext-es" ) <= 0 )
425     {
426         vlc_object_release( p_input_thread );
427         return;
428     }
429
430     telx = var_GetInteger( p_input_thread, "teletext-es" );
431     if( input_GetEsObjects( p_input_thread, telx, &p_zvbi, NULL, NULL )
432         == VLC_SUCCESS )
433     {
434         var_SetInteger( p_zvbi, "vbi-page", i_page );
435         vlc_object_release( p_zvbi );
436     }
437     vlc_object_release( p_input_thread );
438 }
439
440 void libvlc_toggle_teletext( libvlc_media_player_t *p_mi )
441 {
442     input_thread_t *p_input_thread;
443
444     p_input_thread = libvlc_get_input_thread(p_mi);
445     if( !p_input_thread ) return;
446
447     if( var_CountChoices( p_input_thread, "teletext-es" ) <= 0 )
448     {
449         vlc_object_release( p_input_thread );
450         return;
451     }
452     const bool b_selected = var_GetInteger( p_input_thread, "teletext-es" ) >= 0;
453     if( b_selected )
454     {
455         var_SetInteger( p_input_thread, "spu-es", -1 );
456     }
457     else
458     {
459         vlc_value_t list;
460         if( !var_Change( p_input_thread, "teletext-es", VLC_VAR_GETLIST, &list, NULL ) )
461         {
462             if( list.p_list->i_count > 0 )
463                 var_SetInteger( p_input_thread, "spu-es", list.p_list->p_values[0].i_int );
464
465             var_FreeList( &list, NULL );
466         }
467     }
468     vlc_object_release( p_input_thread );
469 }
470
471 int libvlc_video_get_track_count( libvlc_media_player_t *p_mi )
472 {
473     input_thread_t *p_input_thread = libvlc_get_input_thread( p_mi );
474     int i_track_count;
475
476     if( !p_input_thread )
477         return -1;
478
479     i_track_count = var_CountChoices( p_input_thread, "video-es" );
480
481     vlc_object_release( p_input_thread );
482     return i_track_count;
483 }
484
485 libvlc_track_description_t *
486         libvlc_video_get_track_description( libvlc_media_player_t *p_mi )
487 {
488     return libvlc_get_track_description( p_mi, "video-es" );
489 }
490
491 int libvlc_video_get_track( libvlc_media_player_t *p_mi )
492 {
493     input_thread_t *p_input_thread = libvlc_get_input_thread( p_mi );
494     vlc_value_t val_list;
495     vlc_value_t val;
496     int i_track = -1;
497
498     if( !p_input_thread )
499         return -1;
500
501     if( var_Get( p_input_thread, "video-es", &val ) < 0 )
502     {
503         libvlc_printerr( "Video track information not found" );
504         vlc_object_release( p_input_thread );
505         return -1;
506     }
507
508     var_Change( p_input_thread, "video-es", VLC_VAR_GETCHOICES, &val_list, NULL );
509     for( int i = 0; i < val_list.p_list->i_count; i++ )
510     {
511         if( val_list.p_list->p_values[i].i_int == val.i_int )
512         {
513             i_track = i;
514             break;
515         }
516     }
517     var_FreeList( &val_list, NULL );
518     vlc_object_release( p_input_thread );
519     return i_track;
520 }
521
522 int libvlc_video_set_track( libvlc_media_player_t *p_mi, int i_track )
523 {
524     input_thread_t *p_input_thread = libvlc_get_input_thread( p_mi );
525     vlc_value_t val_list;
526     int i_ret = -1;
527
528     if( !p_input_thread )
529         return -1;
530
531     var_Change( p_input_thread, "video-es", VLC_VAR_GETCHOICES, &val_list, NULL );
532     for( int i = 0; i < val_list.p_list->i_count; i++ )
533     {
534         if( i_track == val_list.p_list->p_values[i].i_int )
535         {
536             if( var_SetInteger( p_input_thread, "video-es", i_track ) < 0 )
537                 break;
538             i_ret = 0;
539             goto end;
540         }
541     }
542     libvlc_printerr( "Video track number out of range" );
543 end:
544     var_FreeList( &val_list, NULL );
545     vlc_object_release( p_input_thread );
546     return i_ret;
547 }
548
549 /******************************************************************************
550  * libvlc_video_set_deinterlace : enable deinterlace
551  *****************************************************************************/
552 void libvlc_video_set_deinterlace( libvlc_media_player_t *p_mi,
553                                    const char *psz_mode )
554 {
555     if (psz_mode == NULL)
556         psz_mode = "";
557     if (*psz_mode
558      && strcmp (psz_mode, "blend")   && strcmp (psz_mode, "bob")
559      && strcmp (psz_mode, "discard") && strcmp (psz_mode, "linear")
560      && strcmp (psz_mode, "mean")    && strcmp (psz_mode, "x")
561      && strcmp (psz_mode, "yadif")   && strcmp (psz_mode, "yadif2x"))
562         return;
563
564     if (*psz_mode)
565     {
566         var_SetString (p_mi, "deinterlace-mode", psz_mode);
567         var_SetInteger (p_mi, "deinterlace", 1);
568     }
569     else
570         var_SetInteger (p_mi, "deinterlace", 0);
571
572     size_t n;
573     vout_thread_t **pp_vouts = GetVouts (p_mi, &n);
574     for (size_t i = 0; i < n; i++)
575     {
576         vout_thread_t *p_vout = pp_vouts[i];
577
578         if (*psz_mode)
579         {
580             var_SetString (p_vout, "deinterlace-mode", psz_mode);
581             var_SetInteger (p_vout, "deinterlace", 1);
582         }
583         else
584             var_SetInteger (p_vout, "deinterlace", 0);
585         vlc_object_release (p_vout);
586     }
587     free (pp_vouts);
588 }
589
590 /* ************** */
591 /* module helpers */
592 /* ************** */
593
594
595 static vlc_object_t *get_object( libvlc_media_player_t * p_mi,
596                                  const char *name )
597 {
598     vlc_object_t *object;
599     vout_thread_t *vout = GetVout( p_mi, 0 );
600
601     if( vout )
602     {
603         object = vlc_object_find_name( vout, name, FIND_CHILD );
604         vlc_object_release(vout);
605     }
606     else
607         object = NULL;
608
609     if( !object )
610         libvlc_printerr( "%s not enabled", name );
611     return object;
612 }
613
614
615 typedef const struct {
616     const char name[20];
617     unsigned type;
618 } opt_t;
619
620
621 static void
622 set_int( libvlc_media_player_t *p_mi, const char *restrict name,
623          const opt_t *restrict opt, int value )
624 {
625     if( !opt ) return;
626
627     if( !opt->type ) /* the enabler */
628     {
629         vout_thread_t *vout = GetVout( p_mi, 0 );
630         if (vout)
631         {
632             vout_EnableFilter( vout, opt->name, value, false );
633             vlc_object_release( vout );
634         }
635         return;
636     }
637
638     if( opt->type != VLC_VAR_INTEGER )
639     {
640         libvlc_printerr( "Invalid argument to %s in %s", name, "set int" );
641         return;
642     }
643
644     var_SetInteger(p_mi, opt->name, value);
645     vlc_object_t *object = get_object( p_mi, name );
646     if( object )
647     {
648         var_SetInteger(object, opt->name, value);
649         vlc_object_release( object );
650     }
651 }
652
653
654 static int
655 get_int( libvlc_media_player_t *p_mi, const char *restrict name,
656          const opt_t *restrict opt )
657 {
658     if( !opt ) return 0;
659
660     switch( opt->type )
661     {
662         case 0: /* the enabler */
663         {
664             vlc_object_t *object = get_object( p_mi, name );
665             vlc_object_release( object );
666             return object != NULL;
667         }
668     case VLC_VAR_INTEGER:
669         return var_GetInteger(p_mi, opt->name);
670     default:
671         libvlc_printerr( "Invalid argument to %s in %s", name, "get int" );
672         return 0;
673     }
674 }
675
676
677 static void
678 set_float( libvlc_media_player_t *p_mi, const char *restrict name,
679             const opt_t *restrict opt, float value )
680 {
681     if( !opt ) return;
682
683     if( opt->type != VLC_VAR_FLOAT )
684     {
685         libvlc_printerr( "Invalid argument to %s in %s", name, "set float" );
686         return;
687     }
688
689     var_SetFloat( p_mi, opt->name, value );
690
691     vlc_object_t *object = get_object( p_mi, name );
692     if( object )
693     {
694         var_SetFloat(object, opt->name, value );
695         vlc_object_release( object );
696     }
697 }
698
699
700 static float
701 get_float( libvlc_media_player_t *p_mi, const char *restrict name,
702             const opt_t *restrict opt )
703 {
704     if( !opt ) return 0.0;
705
706
707     if( opt->type != VLC_VAR_FLOAT )
708     {
709         libvlc_printerr( "Invalid argument to %s in %s", name, "get float" );
710         return 0.0;
711     }
712
713     return var_GetFloat( p_mi, opt->name );
714 }
715
716
717 static void
718 set_string( libvlc_media_player_t *p_mi, const char *restrict name,
719             const opt_t *restrict opt, const char *restrict psz_value )
720 {
721     if( !opt ) return;
722
723     if( opt->type != VLC_VAR_STRING )
724     {
725         libvlc_printerr( "Invalid argument to %s in %s", name, "set string" );
726         return;
727     }
728
729     var_SetString( p_mi, opt->name, psz_value );
730
731     vlc_object_t *object = get_object( p_mi, name );
732     if( object )
733     {
734         var_SetString(object, opt->name, psz_value );
735         vlc_object_release( object );
736     }
737 }
738
739
740 static char *
741 get_string( libvlc_media_player_t *p_mi, const char *restrict name,
742             const opt_t *restrict opt )
743 {
744     if( !opt ) return NULL;
745
746     if( opt->type != VLC_VAR_STRING )
747     {
748         libvlc_printerr( "Invalid argument to %s in %s", name, "get string" );
749         return NULL;
750     }
751
752     return var_GetString( p_mi, opt->name );
753 }
754
755
756 static const opt_t *
757 marq_option_bynumber(unsigned option)
758 {
759     static const opt_t optlist[] =
760     {
761         { "marq",          0 },
762         { "marq-marquee",  VLC_VAR_STRING },
763         { "marq-color",    VLC_VAR_INTEGER },
764         { "marq-opacity",  VLC_VAR_INTEGER },
765         { "marq-position", VLC_VAR_INTEGER },
766         { "marq-refresh",  VLC_VAR_INTEGER },
767         { "marq-size",     VLC_VAR_INTEGER },
768         { "marq-timeout",  VLC_VAR_INTEGER },
769         { "marq-x",        VLC_VAR_INTEGER },
770         { "marq-y",        VLC_VAR_INTEGER },
771     };
772     enum { num_opts = sizeof(optlist) / sizeof(*optlist) };
773
774     const opt_t *r = option < num_opts ? optlist+option : NULL;
775     if( !r )
776         libvlc_printerr( "Unknown marquee option" );
777     return r;
778 }
779
780 static vlc_object_t *get_object( libvlc_media_player_t *, const char *);
781
782 /*****************************************************************************
783  * libvlc_video_get_marquee_int : get a marq option value
784  *****************************************************************************/
785 int libvlc_video_get_marquee_int( libvlc_media_player_t *p_mi,
786                                   unsigned option )
787 {
788     return get_int( p_mi, "marq", marq_option_bynumber(option) );
789 }
790
791 /*****************************************************************************
792  * libvlc_video_get_marquee_string : get a marq option value
793  *****************************************************************************/
794 char * libvlc_video_get_marquee_string( libvlc_media_player_t *p_mi,
795                                         unsigned option )
796 {
797     return get_string( p_mi, "marq", marq_option_bynumber(option) );
798 }
799
800 /*****************************************************************************
801  * libvlc_video_set_marquee_int: enable, disable or set an int option
802  *****************************************************************************/
803 void libvlc_video_set_marquee_int( libvlc_media_player_t *p_mi,
804                          unsigned option, int value )
805 {
806     set_int( p_mi, "marq", marq_option_bynumber(option), value );
807 }
808
809 /*****************************************************************************
810  * libvlc_video_set_marquee_string: set a string option
811  *****************************************************************************/
812 void libvlc_video_set_marquee_string( libvlc_media_player_t *p_mi,
813                 unsigned option, const char * value )
814 {
815     set_string( p_mi, "marq", marq_option_bynumber(option), value );
816 }
817
818
819 /* logo module support */
820
821
822 static const opt_t *
823 logo_option_bynumber( unsigned option )
824 {
825     static const opt_t vlogo_optlist[] =
826     /* depends on libvlc_video_logo_option_t */
827     {
828         { "logo",          0 },
829         { "logo-file",     VLC_VAR_STRING },
830         { "logo-x",        VLC_VAR_INTEGER },
831         { "logo-y",        VLC_VAR_INTEGER },
832         { "logo-delay",    VLC_VAR_INTEGER },
833         { "logo-repeat",   VLC_VAR_INTEGER },
834         { "logo-opacity",  VLC_VAR_INTEGER },
835         { "logo-position", VLC_VAR_INTEGER },
836     };
837     enum { num_vlogo_opts = sizeof(vlogo_optlist) / sizeof(*vlogo_optlist) };
838
839     const opt_t *r = option < num_vlogo_opts ? vlogo_optlist+option : NULL;
840     if( !r )
841         libvlc_printerr( "Unknown logo option" );
842     return r;
843 }
844
845
846 void libvlc_video_set_logo_string( libvlc_media_player_t *p_mi,
847                                    unsigned option, const char *psz_value )
848 {
849     set_string( p_mi,"logo",logo_option_bynumber(option),psz_value );
850 }
851
852
853 void libvlc_video_set_logo_int( libvlc_media_player_t *p_mi,
854                                 unsigned option, int value )
855 {
856     set_int( p_mi, "logo", logo_option_bynumber(option), value );
857 }
858
859
860 int libvlc_video_get_logo_int( libvlc_media_player_t *p_mi,
861                                unsigned option )
862 {
863     return get_int( p_mi, "logo", logo_option_bynumber(option) );
864 }
865
866
867 /* adjust module support */
868
869
870 static const opt_t *
871 adjust_option_bynumber( unsigned option )
872 {
873     static const opt_t optlist[] =
874     {
875         { "adjust",               0 },
876         { "contrast",             VLC_VAR_FLOAT },
877         { "brightness",           VLC_VAR_FLOAT },
878         { "hue",                  VLC_VAR_INTEGER },
879         { "saturation",           VLC_VAR_FLOAT },
880         { "gamma",                VLC_VAR_FLOAT },
881     };
882     enum { num_opts = sizeof(optlist) / sizeof(*optlist) };
883
884     const opt_t *r = option < num_opts ? optlist+option : NULL;
885     if( !r )
886         libvlc_printerr( "Unknown adjust option" );
887     return r;
888 }
889
890
891 void libvlc_video_set_adjust_int( libvlc_media_player_t *p_mi,
892                                   unsigned option, int value )
893 {
894     set_int( p_mi, "adjust", adjust_option_bynumber(option), value );
895 }
896
897
898 int libvlc_video_get_adjust_int( libvlc_media_player_t *p_mi,
899                                  unsigned option )
900 {
901     return get_int( p_mi, "adjust", adjust_option_bynumber(option) );
902 }
903
904
905 void libvlc_video_set_adjust_float( libvlc_media_player_t *p_mi,
906                                     unsigned option, float value )
907 {
908     set_float( p_mi, "adjust", adjust_option_bynumber(option), value );
909 }
910
911
912 float libvlc_video_get_adjust_float( libvlc_media_player_t *p_mi,
913                                      unsigned option )
914 {
915     return get_float( p_mi, "adjust", adjust_option_bynumber(option) );
916 }