]> git.sesse.net Git - vlc/blob - lib/video.c
lib: correct and uniformize audio/video track IDs (fixes #7645)
[vlc] / lib / video.c
1 /*****************************************************************************
2  * video.c: libvlc new API video functions
3  *****************************************************************************
4  * Copyright (C) 2005-2010 VLC authors and VideoLAN
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 it
14  * under the terms of the GNU Lesser General Public License as published by
15  * the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.
22  *
23  * You should have received a copy of the GNU Lesser General Public License
24  * along with this program; if not, write to the Free Software Foundation,
25  * 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. All parameters should be passed at once
151      * (obviously _not_ with var_*()). Also, the libvlc object should not be
152      * used for the callbacks: that breaks badly if there are concurrent
153      * media players in the instance. */
154     var_Create( p_vout, "snapshot-width", VLC_VAR_INTEGER );
155     var_SetInteger( p_vout, "snapshot-width", i_width);
156     var_Create( p_vout, "snapshot-height", VLC_VAR_INTEGER );
157     var_SetInteger( p_vout, "snapshot-height", i_height );
158     var_Create( p_vout, "snapshot-path", VLC_VAR_STRING );
159     var_SetString( p_vout, "snapshot-path", psz_filepath );
160     var_Create( p_vout, "snapshot-format", VLC_VAR_STRING );
161     var_SetString( p_vout, "snapshot-format", "png" );
162     var_TriggerCallback( p_vout, "video-snapshot" );
163     vlc_object_release( p_vout );
164     return 0;
165 }
166
167 int libvlc_video_get_size( libvlc_media_player_t *p_mi, unsigned num,
168                            unsigned *restrict px, unsigned *restrict py )
169 {
170     libvlc_media_track_info_t *info;
171     int ret = -1;
172     if (!p_mi->p_md)
173         return ret;
174     int infos = libvlc_media_get_tracks_info(p_mi->p_md, &info);
175     if (infos <= 0)
176         return ret;
177
178     for (int i = 0; i < infos; i++)
179         if (info[i].i_type == libvlc_track_video && num-- == 0) {
180             *px = info[i].u.video.i_width;
181             *py = info[i].u.video.i_height;
182             ret = 0;
183             break;
184         }
185
186     free(info);
187     return ret;
188 }
189
190 int libvlc_video_get_height( libvlc_media_player_t *p_mi )
191 {
192     unsigned width, height;
193
194     if (libvlc_video_get_size (p_mi, 0, &width, &height))
195         return 0;
196     return height;
197 }
198
199 int libvlc_video_get_width( libvlc_media_player_t *p_mi )
200 {
201     unsigned width, height;
202
203     if (libvlc_video_get_size (p_mi, 0, &width, &height))
204         return 0;
205     return width;
206 }
207
208 int libvlc_video_get_cursor( libvlc_media_player_t *mp, unsigned num,
209                              int *restrict px, int *restrict py )
210 {
211     vout_thread_t *p_vout = GetVout (mp, num);
212     if (p_vout == NULL)
213         return -1;
214
215     var_GetCoords (p_vout, "mouse-moved", px, py);
216     vlc_object_release (p_vout);
217     return 0;
218 }
219
220 unsigned libvlc_media_player_has_vout( libvlc_media_player_t *p_mi )
221 {
222     size_t n;
223     vout_thread_t **pp_vouts = GetVouts (p_mi, &n);
224     for (size_t i = 0; i < n; i++)
225         vlc_object_release (pp_vouts[i]);
226     free (pp_vouts);
227     return n;
228 }
229
230 float libvlc_video_get_scale( libvlc_media_player_t *mp )
231 {
232     float f_scale = var_GetFloat (mp, "scale");
233     if (var_GetBool (mp, "autoscale"))
234         f_scale = 0.;
235     return f_scale;
236 }
237
238 void libvlc_video_set_scale( libvlc_media_player_t *p_mp, float f_scale )
239 {
240     if (f_scale != 0.)
241         var_SetFloat (p_mp, "scale", f_scale);
242     var_SetBool (p_mp, "autoscale", f_scale == 0.);
243
244     /* Apply to current video outputs (if any) */
245     size_t n;
246     vout_thread_t **pp_vouts = GetVouts (p_mp, &n);
247     for (size_t i = 0; i < n; i++)
248     {
249         vout_thread_t *p_vout = pp_vouts[i];
250
251         if (f_scale != 0.)
252             var_SetFloat (p_vout, "scale", f_scale);
253         var_SetBool (p_vout, "autoscale", f_scale == 0.);
254         vlc_object_release (p_vout);
255     }
256     free (pp_vouts);
257 }
258
259 char *libvlc_video_get_aspect_ratio( libvlc_media_player_t *p_mi )
260 {
261     return var_GetNonEmptyString (p_mi, "aspect-ratio");
262 }
263
264 void libvlc_video_set_aspect_ratio( libvlc_media_player_t *p_mi,
265                                     const char *psz_aspect )
266 {
267     if (psz_aspect == NULL)
268         psz_aspect = "";
269     var_SetString (p_mi, "aspect-ratio", psz_aspect);
270
271     size_t n;
272     vout_thread_t **pp_vouts = GetVouts (p_mi, &n);
273     for (size_t i = 0; i < n; i++)
274     {
275         vout_thread_t *p_vout = pp_vouts[i];
276
277         var_SetString (p_vout, "aspect-ratio", psz_aspect);
278         vlc_object_release (p_vout);
279     }
280     free (pp_vouts);
281 }
282
283 int libvlc_video_get_spu( libvlc_media_player_t *p_mi )
284 {
285     input_thread_t *p_input_thread = libvlc_get_input_thread( p_mi );
286     vlc_value_t val_list;
287     vlc_value_t val;
288     int i_spu = -1;
289     int i_ret = -1;
290     int i;
291
292     if( !p_input_thread )
293     {
294         libvlc_printerr( "No active input" );
295         return -1;
296     }
297
298     i_ret = var_Get( p_input_thread, "spu-es", &val );
299     if( i_ret < 0 )
300     {
301         vlc_object_release( p_input_thread );
302         libvlc_printerr( "Subtitle information not found" );
303         return -1;
304     }
305
306     var_Change( p_input_thread, "spu-es", VLC_VAR_GETCHOICES, &val_list, NULL );
307     for( i = 0; i < val_list.p_list->i_count; i++ )
308     {
309         if( val.i_int == val_list.p_list->p_values[i].i_int )
310         {
311             i_spu = i;
312             break;
313         }
314     }
315     var_FreeList( &val_list, NULL );
316     vlc_object_release( p_input_thread );
317     return i_spu;
318 }
319
320 int libvlc_video_get_spu_count( libvlc_media_player_t *p_mi )
321 {
322     input_thread_t *p_input_thread = libvlc_get_input_thread( p_mi );
323     int i_spu_count;
324
325     if( !p_input_thread )
326         return 0;
327
328     i_spu_count = var_CountChoices( p_input_thread, "spu-es" );
329     vlc_object_release( p_input_thread );
330     return i_spu_count;
331 }
332
333 libvlc_track_description_t *
334         libvlc_video_get_spu_description( libvlc_media_player_t *p_mi )
335 {
336     return libvlc_get_track_description( p_mi, "spu-es" );
337 }
338
339 int libvlc_video_set_spu( libvlc_media_player_t *p_mi, unsigned i_spu )
340 {
341     input_thread_t *p_input_thread = libvlc_get_input_thread( p_mi );
342     vlc_value_t list;
343     int i_ret = 0;
344
345     if( !p_input_thread )
346         return -1;
347
348     var_Change (p_input_thread, "spu-es", VLC_VAR_GETCHOICES, &list, NULL);
349
350     if (i_spu > (unsigned)list.p_list->i_count)
351     {
352         libvlc_printerr( "Subtitle number out of range (%u/%u)",
353                          i_spu, list.p_list->i_count );
354         i_ret = -1;
355         goto end;
356     }
357     var_SetInteger (p_input_thread, "spu-es",
358                     list.p_list->p_values[i_spu].i_int);
359 end:
360     vlc_object_release (p_input_thread);
361     var_FreeList (&list, NULL);
362     return i_ret;
363 }
364
365 int libvlc_video_set_subtitle_file( libvlc_media_player_t *p_mi,
366                                     const char *psz_subtitle )
367 {
368     input_thread_t *p_input_thread = libvlc_get_input_thread ( p_mi );
369     bool b_ret = false;
370
371     if( p_input_thread )
372     {
373         if( !input_AddSubtitle( p_input_thread, psz_subtitle, true ) )
374             b_ret = true;
375         vlc_object_release( p_input_thread );
376     }
377     return b_ret;
378 }
379
380 int64_t libvlc_video_get_spu_delay( libvlc_media_player_t *p_mi )
381 {
382     input_thread_t *p_input_thread = libvlc_get_input_thread( p_mi );
383     int64_t val = 0;
384
385     if( p_input_thread )
386     {
387         val = var_GetTime( p_input_thread, "spu-delay" );
388         vlc_object_release( p_input_thread );
389     }
390     else
391     {
392         libvlc_printerr( "No active input" );
393     }
394
395     return val;
396 }
397
398 int libvlc_video_set_spu_delay( libvlc_media_player_t *p_mi,
399                                 int64_t i_delay )
400 {
401     input_thread_t *p_input_thread = libvlc_get_input_thread( p_mi );
402     int ret = -1;
403
404     if( p_input_thread )
405     {
406         var_SetTime( p_input_thread, "spu-delay", i_delay );
407         vlc_object_release( p_input_thread );
408         ret = 0;
409     }
410     else
411     {
412         libvlc_printerr( "No active input" );
413     }
414
415     return ret;
416 }
417
418 libvlc_track_description_t *
419         libvlc_video_get_title_description( libvlc_media_player_t *p_mi )
420 {
421     return libvlc_get_track_description( p_mi, "title" );
422 }
423
424 libvlc_track_description_t *
425         libvlc_video_get_chapter_description( libvlc_media_player_t *p_mi,
426                                               int i_title )
427 {
428     char psz_title[12];
429     sprintf( psz_title,  "title %2i", i_title );
430     return libvlc_get_track_description( p_mi, psz_title );
431 }
432
433 char *libvlc_video_get_crop_geometry (libvlc_media_player_t *p_mi)
434 {
435     return var_GetNonEmptyString (p_mi, "crop");
436 }
437
438 void libvlc_video_set_crop_geometry( libvlc_media_player_t *p_mi,
439                                      const char *psz_geometry )
440 {
441     if (psz_geometry == NULL)
442         psz_geometry = "";
443
444     var_SetString (p_mi, "crop", psz_geometry);
445
446     size_t n;
447     vout_thread_t **pp_vouts = GetVouts (p_mi, &n);
448
449     for (size_t i = 0; i < n; i++)
450     {
451         vout_thread_t *p_vout = pp_vouts[i];
452         vlc_value_t val;
453
454         /* Make sure the geometry is in the choice list */
455         /* Earlier choices are removed to not grow a long list over time. */
456         /* FIXME: not atomic - lock? */
457         val.psz_string = (char *)psz_geometry;
458         var_Change (p_vout, "crop", VLC_VAR_CLEARCHOICES, NULL, NULL);
459         var_Change (p_vout, "crop", VLC_VAR_ADDCHOICE, &val, &val);
460         var_SetString (p_vout, "crop", psz_geometry);
461         vlc_object_release (p_vout);
462     }
463     free (pp_vouts);
464 }
465
466 int libvlc_video_get_teletext( libvlc_media_player_t *p_mi )
467 {
468     return var_GetInteger (p_mi, "vbi-page");
469 }
470
471 void libvlc_video_set_teletext( libvlc_media_player_t *p_mi, int i_page )
472 {
473     input_thread_t *p_input_thread;
474     vlc_object_t *p_zvbi = NULL;
475     int telx;
476
477     var_SetInteger (p_mi, "vbi-page", i_page);
478
479     p_input_thread = libvlc_get_input_thread( p_mi );
480     if( !p_input_thread ) return;
481
482     if( var_CountChoices( p_input_thread, "teletext-es" ) <= 0 )
483     {
484         vlc_object_release( p_input_thread );
485         return;
486     }
487
488     telx = var_GetInteger( p_input_thread, "teletext-es" );
489     if( input_GetEsObjects( p_input_thread, telx, &p_zvbi, NULL, NULL )
490         == VLC_SUCCESS )
491     {
492         var_SetInteger( p_zvbi, "vbi-page", i_page );
493         vlc_object_release( p_zvbi );
494     }
495     vlc_object_release( p_input_thread );
496 }
497
498 void libvlc_toggle_teletext( libvlc_media_player_t *p_mi )
499 {
500     input_thread_t *p_input_thread;
501
502     p_input_thread = libvlc_get_input_thread(p_mi);
503     if( !p_input_thread ) return;
504
505     if( var_CountChoices( p_input_thread, "teletext-es" ) <= 0 )
506     {
507         vlc_object_release( p_input_thread );
508         return;
509     }
510     const bool b_selected = var_GetInteger( p_input_thread, "teletext-es" ) >= 0;
511     if( b_selected )
512     {
513         var_SetInteger( p_input_thread, "spu-es", -1 );
514     }
515     else
516     {
517         vlc_value_t list;
518         if( !var_Change( p_input_thread, "teletext-es", VLC_VAR_GETLIST, &list, NULL ) )
519         {
520             if( list.p_list->i_count > 0 )
521                 var_SetInteger( p_input_thread, "spu-es", list.p_list->p_values[0].i_int );
522
523             var_FreeList( &list, NULL );
524         }
525     }
526     vlc_object_release( p_input_thread );
527 }
528
529 int libvlc_video_get_track_count( libvlc_media_player_t *p_mi )
530 {
531     input_thread_t *p_input_thread = libvlc_get_input_thread( p_mi );
532     int i_track_count;
533
534     if( !p_input_thread )
535         return -1;
536
537     i_track_count = var_CountChoices( p_input_thread, "video-es" );
538
539     vlc_object_release( p_input_thread );
540     return i_track_count;
541 }
542
543 libvlc_track_description_t *
544         libvlc_video_get_track_description( libvlc_media_player_t *p_mi )
545 {
546     return libvlc_get_track_description( p_mi, "video-es" );
547 }
548
549 int libvlc_video_get_track( libvlc_media_player_t *p_mi )
550 {
551     input_thread_t *p_input_thread = libvlc_get_input_thread( p_mi );
552
553     if( !p_input_thread )
554         return -1;
555
556     int id = var_GetInteger( p_input_thread, "video-es" );
557     vlc_object_release( p_input_thread );
558     return id;
559 }
560
561 int libvlc_video_set_track( libvlc_media_player_t *p_mi, int i_track )
562 {
563     input_thread_t *p_input_thread = libvlc_get_input_thread( p_mi );
564     vlc_value_t val_list;
565     int i_ret = -1;
566
567     if( !p_input_thread )
568         return -1;
569
570     var_Change( p_input_thread, "video-es", VLC_VAR_GETCHOICES, &val_list, NULL );
571     for( int i = 0; i < val_list.p_list->i_count; i++ )
572     {
573         if( i_track == val_list.p_list->p_values[i].i_int )
574         {
575             if( var_SetInteger( p_input_thread, "video-es", i_track ) < 0 )
576                 break;
577             i_ret = 0;
578             goto end;
579         }
580     }
581     libvlc_printerr( "Track identifier not found" );
582 end:
583     var_FreeList( &val_list, NULL );
584     vlc_object_release( p_input_thread );
585     return i_ret;
586 }
587
588 /******************************************************************************
589  * libvlc_video_set_deinterlace : enable deinterlace
590  *****************************************************************************/
591 void libvlc_video_set_deinterlace( libvlc_media_player_t *p_mi,
592                                    const char *psz_mode )
593 {
594     if (psz_mode == NULL)
595         psz_mode = "";
596     if (*psz_mode
597      && strcmp (psz_mode, "blend")    && strcmp (psz_mode, "bob")
598      && strcmp (psz_mode, "discard")  && strcmp (psz_mode, "linear")
599      && strcmp (psz_mode, "mean")     && strcmp (psz_mode, "x")
600      && strcmp (psz_mode, "yadif")    && strcmp (psz_mode, "yadif2x")
601      && strcmp (psz_mode, "phosphor") && strcmp (psz_mode, "ivtc"))
602         return;
603
604     if (*psz_mode)
605     {
606         var_SetString (p_mi, "deinterlace-mode", psz_mode);
607         var_SetInteger (p_mi, "deinterlace", 1);
608     }
609     else
610         var_SetInteger (p_mi, "deinterlace", 0);
611
612     size_t n;
613     vout_thread_t **pp_vouts = GetVouts (p_mi, &n);
614     for (size_t i = 0; i < n; i++)
615     {
616         vout_thread_t *p_vout = pp_vouts[i];
617
618         if (*psz_mode)
619         {
620             var_SetString (p_vout, "deinterlace-mode", psz_mode);
621             var_SetInteger (p_vout, "deinterlace", 1);
622         }
623         else
624             var_SetInteger (p_vout, "deinterlace", 0);
625         vlc_object_release (p_vout);
626     }
627     free (pp_vouts);
628 }
629
630 /* ************** */
631 /* module helpers */
632 /* ************** */
633
634
635 static vlc_object_t *get_object( libvlc_media_player_t * p_mi,
636                                  const char *name )
637 {
638     vlc_object_t *object;
639     vout_thread_t *vout = GetVout( p_mi, 0 );
640
641     if( vout )
642     {
643         object = vlc_object_find_name( vout, name );
644         vlc_object_release(vout);
645     }
646     else
647         object = NULL;
648
649     if( !object )
650         libvlc_printerr( "%s not enabled", name );
651     return object;
652 }
653
654
655 typedef const struct {
656     const char name[20];
657     unsigned type;
658 } opt_t;
659
660
661 static void
662 set_int( libvlc_media_player_t *p_mi, const char *restrict name,
663          const opt_t *restrict opt, int value )
664 {
665     if( !opt ) return;
666
667     if( !opt->type ) /* the enabler */
668     {
669         vout_thread_t *vout = GetVout( p_mi, 0 );
670         if (vout)
671         {
672             vout_EnableFilter( vout, opt->name, value, false );
673             vlc_object_release( vout );
674         }
675         return;
676     }
677
678     if( opt->type != VLC_VAR_INTEGER )
679     {
680         libvlc_printerr( "Invalid argument to %s in %s", name, "set int" );
681         return;
682     }
683
684     var_SetInteger(p_mi, opt->name, value);
685     vlc_object_t *object = get_object( p_mi, name );
686     if( object )
687     {
688         var_SetInteger(object, opt->name, value);
689         vlc_object_release( object );
690     }
691 }
692
693
694 static int
695 get_int( libvlc_media_player_t *p_mi, const char *restrict name,
696          const opt_t *restrict opt )
697 {
698     if( !opt ) return 0;
699
700     switch( opt->type )
701     {
702         case 0: /* the enabler */
703         {
704             vlc_object_t *object = get_object( p_mi, name );
705             vlc_object_release( object );
706             return object != NULL;
707         }
708     case VLC_VAR_INTEGER:
709         return var_GetInteger(p_mi, opt->name);
710     default:
711         libvlc_printerr( "Invalid argument to %s in %s", name, "get int" );
712         return 0;
713     }
714 }
715
716
717 static void
718 set_float( libvlc_media_player_t *p_mi, const char *restrict name,
719             const opt_t *restrict opt, float value )
720 {
721     if( !opt ) return;
722
723     if( opt->type != VLC_VAR_FLOAT )
724     {
725         libvlc_printerr( "Invalid argument to %s in %s", name, "set float" );
726         return;
727     }
728
729     var_SetFloat( p_mi, opt->name, value );
730
731     vlc_object_t *object = get_object( p_mi, name );
732     if( object )
733     {
734         var_SetFloat(object, opt->name, value );
735         vlc_object_release( object );
736     }
737 }
738
739
740 static float
741 get_float( libvlc_media_player_t *p_mi, const char *restrict name,
742             const opt_t *restrict opt )
743 {
744     if( !opt ) return 0.0;
745
746
747     if( opt->type != VLC_VAR_FLOAT )
748     {
749         libvlc_printerr( "Invalid argument to %s in %s", name, "get float" );
750         return 0.0;
751     }
752
753     return var_GetFloat( p_mi, opt->name );
754 }
755
756
757 static void
758 set_string( libvlc_media_player_t *p_mi, const char *restrict name,
759             const opt_t *restrict opt, const char *restrict psz_value )
760 {
761     if( !opt ) return;
762
763     if( opt->type != VLC_VAR_STRING )
764     {
765         libvlc_printerr( "Invalid argument to %s in %s", name, "set string" );
766         return;
767     }
768
769     var_SetString( p_mi, opt->name, psz_value );
770
771     vlc_object_t *object = get_object( p_mi, name );
772     if( object )
773     {
774         var_SetString(object, opt->name, psz_value );
775         vlc_object_release( object );
776     }
777 }
778
779
780 static char *
781 get_string( libvlc_media_player_t *p_mi, const char *restrict name,
782             const opt_t *restrict opt )
783 {
784     if( !opt ) return NULL;
785
786     if( opt->type != VLC_VAR_STRING )
787     {
788         libvlc_printerr( "Invalid argument to %s in %s", name, "get string" );
789         return NULL;
790     }
791
792     return var_GetString( p_mi, opt->name );
793 }
794
795
796 static const opt_t *
797 marq_option_bynumber(unsigned option)
798 {
799     static const opt_t optlist[] =
800     {
801         { "marq",          0 },
802         { "marq-marquee",  VLC_VAR_STRING },
803         { "marq-color",    VLC_VAR_INTEGER },
804         { "marq-opacity",  VLC_VAR_INTEGER },
805         { "marq-position", VLC_VAR_INTEGER },
806         { "marq-refresh",  VLC_VAR_INTEGER },
807         { "marq-size",     VLC_VAR_INTEGER },
808         { "marq-timeout",  VLC_VAR_INTEGER },
809         { "marq-x",        VLC_VAR_INTEGER },
810         { "marq-y",        VLC_VAR_INTEGER },
811     };
812     enum { num_opts = sizeof(optlist) / sizeof(*optlist) };
813
814     const opt_t *r = option < num_opts ? optlist+option : NULL;
815     if( !r )
816         libvlc_printerr( "Unknown marquee option" );
817     return r;
818 }
819
820 static vlc_object_t *get_object( libvlc_media_player_t *, const char *);
821
822 /*****************************************************************************
823  * libvlc_video_get_marquee_int : get a marq option value
824  *****************************************************************************/
825 int libvlc_video_get_marquee_int( libvlc_media_player_t *p_mi,
826                                   unsigned option )
827 {
828     return get_int( p_mi, "marq", marq_option_bynumber(option) );
829 }
830
831 /*****************************************************************************
832  * libvlc_video_get_marquee_string : get a marq option value
833  *****************************************************************************/
834 char * libvlc_video_get_marquee_string( libvlc_media_player_t *p_mi,
835                                         unsigned option )
836 {
837     return get_string( p_mi, "marq", marq_option_bynumber(option) );
838 }
839
840 /*****************************************************************************
841  * libvlc_video_set_marquee_int: enable, disable or set an int option
842  *****************************************************************************/
843 void libvlc_video_set_marquee_int( libvlc_media_player_t *p_mi,
844                          unsigned option, int value )
845 {
846     set_int( p_mi, "marq", marq_option_bynumber(option), value );
847 }
848
849 /*****************************************************************************
850  * libvlc_video_set_marquee_string: set a string option
851  *****************************************************************************/
852 void libvlc_video_set_marquee_string( libvlc_media_player_t *p_mi,
853                 unsigned option, const char * value )
854 {
855     set_string( p_mi, "marq", marq_option_bynumber(option), value );
856 }
857
858
859 /* logo module support */
860
861
862 static const opt_t *
863 logo_option_bynumber( unsigned option )
864 {
865     static const opt_t vlogo_optlist[] =
866     /* depends on libvlc_video_logo_option_t */
867     {
868         { "logo",          0 },
869         { "logo-file",     VLC_VAR_STRING },
870         { "logo-x",        VLC_VAR_INTEGER },
871         { "logo-y",        VLC_VAR_INTEGER },
872         { "logo-delay",    VLC_VAR_INTEGER },
873         { "logo-repeat",   VLC_VAR_INTEGER },
874         { "logo-opacity",  VLC_VAR_INTEGER },
875         { "logo-position", VLC_VAR_INTEGER },
876     };
877     enum { num_vlogo_opts = sizeof(vlogo_optlist) / sizeof(*vlogo_optlist) };
878
879     const opt_t *r = option < num_vlogo_opts ? vlogo_optlist+option : NULL;
880     if( !r )
881         libvlc_printerr( "Unknown logo option" );
882     return r;
883 }
884
885
886 void libvlc_video_set_logo_string( libvlc_media_player_t *p_mi,
887                                    unsigned option, const char *psz_value )
888 {
889     set_string( p_mi,"logo",logo_option_bynumber(option),psz_value );
890 }
891
892
893 void libvlc_video_set_logo_int( libvlc_media_player_t *p_mi,
894                                 unsigned option, int value )
895 {
896     set_int( p_mi, "logo", logo_option_bynumber(option), value );
897 }
898
899
900 int libvlc_video_get_logo_int( libvlc_media_player_t *p_mi,
901                                unsigned option )
902 {
903     return get_int( p_mi, "logo", logo_option_bynumber(option) );
904 }
905
906
907 /* adjust module support */
908
909
910 static const opt_t *
911 adjust_option_bynumber( unsigned option )
912 {
913     static const opt_t optlist[] =
914     {
915         { "adjust",               0 },
916         { "contrast",             VLC_VAR_FLOAT },
917         { "brightness",           VLC_VAR_FLOAT },
918         { "hue",                  VLC_VAR_INTEGER },
919         { "saturation",           VLC_VAR_FLOAT },
920         { "gamma",                VLC_VAR_FLOAT },
921     };
922     enum { num_opts = sizeof(optlist) / sizeof(*optlist) };
923
924     const opt_t *r = option < num_opts ? optlist+option : NULL;
925     if( !r )
926         libvlc_printerr( "Unknown adjust option" );
927     return r;
928 }
929
930
931 void libvlc_video_set_adjust_int( libvlc_media_player_t *p_mi,
932                                   unsigned option, int value )
933 {
934     set_int( p_mi, "adjust", adjust_option_bynumber(option), value );
935 }
936
937
938 int libvlc_video_get_adjust_int( libvlc_media_player_t *p_mi,
939                                  unsigned option )
940 {
941     return get_int( p_mi, "adjust", adjust_option_bynumber(option) );
942 }
943
944
945 void libvlc_video_set_adjust_float( libvlc_media_player_t *p_mi,
946                                     unsigned option, float value )
947 {
948     set_float( p_mi, "adjust", adjust_option_bynumber(option), value );
949 }
950
951
952 float libvlc_video_get_adjust_float( libvlc_media_player_t *p_mi,
953                                      unsigned option )
954 {
955     return get_float( p_mi, "adjust", adjust_option_bynumber(option) );
956 }