Vout: add a new vout_window type for android native windows
[vlc.git] / lib / video.c
blob43471b9e21b5e0cda1d57d00a4fe8bae8393c27e
1 /*****************************************************************************
2 * video.c: libvlc new API video functions
3 *****************************************************************************
4 * Copyright (C) 2005-2010 VLC authors and VideoLAN
6 * $Id$
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>
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.
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.
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 *****************************************************************************/
28 #ifdef HAVE_CONFIG_H
29 # include "config.h"
30 #endif
32 #include <vlc/libvlc.h>
33 #include <vlc/libvlc_media.h>
34 #include <vlc/libvlc_media_player.h>
36 #include <vlc_common.h>
37 #include <vlc_input.h>
38 #include <vlc_vout.h>
40 #include "media_player_internal.h"
41 #include <assert.h>
44 * Remember to release the returned vout_thread_t.
46 static vout_thread_t **GetVouts( libvlc_media_player_t *p_mi, size_t *n )
48 input_thread_t *p_input = libvlc_get_input_thread( p_mi );
49 if( !p_input )
51 *n = 0;
52 return NULL;
55 vout_thread_t **pp_vouts;
56 if (input_Control( p_input, INPUT_GET_VOUTS, &pp_vouts, n))
58 *n = 0;
59 pp_vouts = NULL;
61 vlc_object_release (p_input);
62 return pp_vouts;
65 static vout_thread_t *GetVout (libvlc_media_player_t *mp, size_t num)
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;
73 if (num < n)
74 p_vout = pp_vouts[num];
76 for (size_t i = 0; i < n; i++)
77 if (i != num)
78 vlc_object_release (pp_vouts[i]);
79 free (pp_vouts);
81 if (p_vout == NULL)
82 err:
83 libvlc_printerr ("Video output not active");
84 return p_vout;
87 /**********************************************************************
88 * Exported functions
89 **********************************************************************/
91 void libvlc_set_fullscreen( libvlc_media_player_t *p_mi, int b_fullscreen )
93 /* This will work even if the video is not currently active */
94 var_SetBool (p_mi, "fullscreen", !!b_fullscreen);
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++)
101 var_SetBool (pp_vouts[i], "fullscreen", b_fullscreen);
102 vlc_object_release (pp_vouts[i]);
104 free (pp_vouts);
107 int libvlc_get_fullscreen( libvlc_media_player_t *p_mi )
109 return var_GetBool (p_mi, "fullscreen");
112 void libvlc_toggle_fullscreen( libvlc_media_player_t *p_mi )
114 bool b_fullscreen = var_ToggleBool (p_mi, "fullscreen");
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++)
121 vout_thread_t *p_vout = pp_vouts[i];
123 var_SetBool (p_vout, "fullscreen", b_fullscreen);
124 vlc_object_release (p_vout);
126 free (pp_vouts);
129 void libvlc_video_set_key_input( libvlc_media_player_t *p_mi, unsigned on )
131 var_SetBool (p_mi, "keyboard-events", !!on);
134 void libvlc_video_set_mouse_input( libvlc_media_player_t *p_mi, unsigned on )
136 var_SetBool (p_mi, "mouse-events", !!on);
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 )
144 assert( psz_filepath );
146 vout_thread_t *p_vout = GetVout (p_mi, num);
147 if (p_vout == NULL)
148 return -1;
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;
167 int libvlc_video_get_size( libvlc_media_player_t *p_mi, unsigned num,
168 unsigned *restrict px, unsigned *restrict py )
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;
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;
186 free(info);
187 return ret;
190 int libvlc_video_get_height( libvlc_media_player_t *p_mi )
192 unsigned width, height;
194 if (libvlc_video_get_size (p_mi, 0, &width, &height))
195 return 0;
196 return height;
199 int libvlc_video_get_width( libvlc_media_player_t *p_mi )
201 unsigned width, height;
203 if (libvlc_video_get_size (p_mi, 0, &width, &height))
204 return 0;
205 return width;
208 int libvlc_video_get_cursor( libvlc_media_player_t *mp, unsigned num,
209 int *restrict px, int *restrict py )
211 vout_thread_t *p_vout = GetVout (mp, num);
212 if (p_vout == NULL)
213 return -1;
215 var_GetCoords (p_vout, "mouse-moved", px, py);
216 vlc_object_release (p_vout);
217 return 0;
220 unsigned libvlc_media_player_has_vout( libvlc_media_player_t *p_mi )
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;
230 float libvlc_video_get_scale( libvlc_media_player_t *mp )
232 float f_scale = var_GetFloat (mp, "scale");
233 if (var_GetBool (mp, "autoscale"))
234 f_scale = 0.;
235 return f_scale;
238 void libvlc_video_set_scale( libvlc_media_player_t *p_mp, float f_scale )
240 if (f_scale != 0.)
241 var_SetFloat (p_mp, "scale", f_scale);
242 var_SetBool (p_mp, "autoscale", f_scale == 0.);
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++)
249 vout_thread_t *p_vout = pp_vouts[i];
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);
256 free (pp_vouts);
259 char *libvlc_video_get_aspect_ratio( libvlc_media_player_t *p_mi )
261 return var_GetNonEmptyString (p_mi, "aspect-ratio");
264 void libvlc_video_set_aspect_ratio( libvlc_media_player_t *p_mi,
265 const char *psz_aspect )
267 if (psz_aspect == NULL)
268 psz_aspect = "";
269 var_SetString (p_mi, "aspect-ratio", psz_aspect);
271 size_t n;
272 vout_thread_t **pp_vouts = GetVouts (p_mi, &n);
273 for (size_t i = 0; i < n; i++)
275 vout_thread_t *p_vout = pp_vouts[i];
277 var_SetString (p_vout, "aspect-ratio", psz_aspect);
278 vlc_object_release (p_vout);
280 free (pp_vouts);
283 int libvlc_video_get_spu( libvlc_media_player_t *p_mi )
285 input_thread_t *p_input_thread = libvlc_get_input_thread( p_mi );
287 if( !p_input_thread )
289 libvlc_printerr( "No active input" );
290 return -1;
293 int i_spu = var_GetInteger( p_input_thread, "spu-es" );
294 vlc_object_release( p_input_thread );
295 return i_spu;
298 int libvlc_video_get_spu_count( libvlc_media_player_t *p_mi )
300 input_thread_t *p_input_thread = libvlc_get_input_thread( p_mi );
301 int i_spu_count;
303 if( !p_input_thread )
304 return 0;
306 i_spu_count = var_CountChoices( p_input_thread, "spu-es" );
307 vlc_object_release( p_input_thread );
308 return i_spu_count;
311 libvlc_track_description_t *
312 libvlc_video_get_spu_description( libvlc_media_player_t *p_mi )
314 return libvlc_get_track_description( p_mi, "spu-es" );
317 int libvlc_video_set_spu( libvlc_media_player_t *p_mi, int i_spu )
319 input_thread_t *p_input_thread = libvlc_get_input_thread( p_mi );
320 vlc_value_t list;
321 int i_ret = -1;
323 if( !p_input_thread )
324 return -1;
326 var_Change (p_input_thread, "spu-es", VLC_VAR_GETCHOICES, &list, NULL);
327 for (int i = 0; i < list.p_list->i_count; i++)
329 if( i_spu == list.p_list->p_values[i].i_int )
331 if( var_SetInteger( p_input_thread, "spu-es", i_spu ) < 0 )
332 break;
333 i_ret = 0;
334 goto end;
337 libvlc_printerr( "Track identifier not found" );
338 end:
339 vlc_object_release (p_input_thread);
340 var_FreeList (&list, NULL);
341 return i_ret;
344 int libvlc_video_set_subtitle_file( libvlc_media_player_t *p_mi,
345 const char *psz_subtitle )
347 input_thread_t *p_input_thread = libvlc_get_input_thread ( p_mi );
348 bool b_ret = false;
350 if( p_input_thread )
352 if( !input_AddSubtitle( p_input_thread, psz_subtitle, true ) )
353 b_ret = true;
354 vlc_object_release( p_input_thread );
356 return b_ret;
359 int64_t libvlc_video_get_spu_delay( libvlc_media_player_t *p_mi )
361 input_thread_t *p_input_thread = libvlc_get_input_thread( p_mi );
362 int64_t val = 0;
364 if( p_input_thread )
366 val = var_GetTime( p_input_thread, "spu-delay" );
367 vlc_object_release( p_input_thread );
369 else
371 libvlc_printerr( "No active input" );
374 return val;
377 int libvlc_video_set_spu_delay( libvlc_media_player_t *p_mi,
378 int64_t i_delay )
380 input_thread_t *p_input_thread = libvlc_get_input_thread( p_mi );
381 int ret = -1;
383 if( p_input_thread )
385 var_SetTime( p_input_thread, "spu-delay", i_delay );
386 vlc_object_release( p_input_thread );
387 ret = 0;
389 else
391 libvlc_printerr( "No active input" );
394 return ret;
397 libvlc_track_description_t *
398 libvlc_video_get_title_description( libvlc_media_player_t *p_mi )
400 return libvlc_get_track_description( p_mi, "title" );
403 libvlc_track_description_t *
404 libvlc_video_get_chapter_description( libvlc_media_player_t *p_mi,
405 int i_title )
407 char psz_title[12];
408 sprintf( psz_title, "title %2i", i_title );
409 return libvlc_get_track_description( p_mi, psz_title );
412 char *libvlc_video_get_crop_geometry (libvlc_media_player_t *p_mi)
414 return var_GetNonEmptyString (p_mi, "crop");
417 void libvlc_video_set_crop_geometry( libvlc_media_player_t *p_mi,
418 const char *psz_geometry )
420 if (psz_geometry == NULL)
421 psz_geometry = "";
423 var_SetString (p_mi, "crop", psz_geometry);
425 size_t n;
426 vout_thread_t **pp_vouts = GetVouts (p_mi, &n);
428 for (size_t i = 0; i < n; i++)
430 vout_thread_t *p_vout = pp_vouts[i];
431 vlc_value_t val;
433 /* Make sure the geometry is in the choice list */
434 /* Earlier choices are removed to not grow a long list over time. */
435 /* FIXME: not atomic - lock? */
436 val.psz_string = (char *)psz_geometry;
437 var_Change (p_vout, "crop", VLC_VAR_CLEARCHOICES, NULL, NULL);
438 var_Change (p_vout, "crop", VLC_VAR_ADDCHOICE, &val, &val);
439 var_SetString (p_vout, "crop", psz_geometry);
440 vlc_object_release (p_vout);
442 free (pp_vouts);
445 int libvlc_video_get_teletext( libvlc_media_player_t *p_mi )
447 return var_GetInteger (p_mi, "vbi-page");
450 void libvlc_video_set_teletext( libvlc_media_player_t *p_mi, int i_page )
452 input_thread_t *p_input_thread;
453 vlc_object_t *p_zvbi = NULL;
454 int telx;
456 var_SetInteger (p_mi, "vbi-page", i_page);
458 p_input_thread = libvlc_get_input_thread( p_mi );
459 if( !p_input_thread ) return;
461 if( var_CountChoices( p_input_thread, "teletext-es" ) <= 0 )
463 vlc_object_release( p_input_thread );
464 return;
467 telx = var_GetInteger( p_input_thread, "teletext-es" );
468 if( input_GetEsObjects( p_input_thread, telx, &p_zvbi, NULL, NULL )
469 == VLC_SUCCESS )
471 var_SetInteger( p_zvbi, "vbi-page", i_page );
472 vlc_object_release( p_zvbi );
474 vlc_object_release( p_input_thread );
477 void libvlc_toggle_teletext( libvlc_media_player_t *p_mi )
479 input_thread_t *p_input_thread;
481 p_input_thread = libvlc_get_input_thread(p_mi);
482 if( !p_input_thread ) return;
484 if( var_CountChoices( p_input_thread, "teletext-es" ) <= 0 )
486 vlc_object_release( p_input_thread );
487 return;
489 const bool b_selected = var_GetInteger( p_input_thread, "teletext-es" ) >= 0;
490 if( b_selected )
492 var_SetInteger( p_input_thread, "spu-es", -1 );
494 else
496 vlc_value_t list;
497 if( !var_Change( p_input_thread, "teletext-es", VLC_VAR_GETLIST, &list, NULL ) )
499 if( list.p_list->i_count > 0 )
500 var_SetInteger( p_input_thread, "spu-es", list.p_list->p_values[0].i_int );
502 var_FreeList( &list, NULL );
505 vlc_object_release( p_input_thread );
508 int libvlc_video_get_track_count( libvlc_media_player_t *p_mi )
510 input_thread_t *p_input_thread = libvlc_get_input_thread( p_mi );
511 int i_track_count;
513 if( !p_input_thread )
514 return -1;
516 i_track_count = var_CountChoices( p_input_thread, "video-es" );
518 vlc_object_release( p_input_thread );
519 return i_track_count;
522 libvlc_track_description_t *
523 libvlc_video_get_track_description( libvlc_media_player_t *p_mi )
525 return libvlc_get_track_description( p_mi, "video-es" );
528 int libvlc_video_get_track( libvlc_media_player_t *p_mi )
530 input_thread_t *p_input_thread = libvlc_get_input_thread( p_mi );
532 if( !p_input_thread )
533 return -1;
535 int id = var_GetInteger( p_input_thread, "video-es" );
536 vlc_object_release( p_input_thread );
537 return id;
540 int libvlc_video_set_track( libvlc_media_player_t *p_mi, int i_track )
542 input_thread_t *p_input_thread = libvlc_get_input_thread( p_mi );
543 vlc_value_t val_list;
544 int i_ret = -1;
546 if( !p_input_thread )
547 return -1;
549 var_Change( p_input_thread, "video-es", VLC_VAR_GETCHOICES, &val_list, NULL );
550 for( int i = 0; i < val_list.p_list->i_count; i++ )
552 if( i_track == val_list.p_list->p_values[i].i_int )
554 if( var_SetInteger( p_input_thread, "video-es", i_track ) < 0 )
555 break;
556 i_ret = 0;
557 goto end;
560 libvlc_printerr( "Track identifier not found" );
561 end:
562 var_FreeList( &val_list, NULL );
563 vlc_object_release( p_input_thread );
564 return i_ret;
567 /******************************************************************************
568 * libvlc_video_set_deinterlace : enable deinterlace
569 *****************************************************************************/
570 void libvlc_video_set_deinterlace( libvlc_media_player_t *p_mi,
571 const char *psz_mode )
573 if (psz_mode == NULL)
574 psz_mode = "";
575 if (*psz_mode
576 && strcmp (psz_mode, "blend") && strcmp (psz_mode, "bob")
577 && strcmp (psz_mode, "discard") && strcmp (psz_mode, "linear")
578 && strcmp (psz_mode, "mean") && strcmp (psz_mode, "x")
579 && strcmp (psz_mode, "yadif") && strcmp (psz_mode, "yadif2x")
580 && strcmp (psz_mode, "phosphor") && strcmp (psz_mode, "ivtc"))
581 return;
583 if (*psz_mode)
585 var_SetString (p_mi, "deinterlace-mode", psz_mode);
586 var_SetInteger (p_mi, "deinterlace", 1);
588 else
589 var_SetInteger (p_mi, "deinterlace", 0);
591 size_t n;
592 vout_thread_t **pp_vouts = GetVouts (p_mi, &n);
593 for (size_t i = 0; i < n; i++)
595 vout_thread_t *p_vout = pp_vouts[i];
597 if (*psz_mode)
599 var_SetString (p_vout, "deinterlace-mode", psz_mode);
600 var_SetInteger (p_vout, "deinterlace", 1);
602 else
603 var_SetInteger (p_vout, "deinterlace", 0);
604 vlc_object_release (p_vout);
606 free (pp_vouts);
609 /* ************** */
610 /* module helpers */
611 /* ************** */
614 static vlc_object_t *get_object( libvlc_media_player_t * p_mi,
615 const char *name )
617 vlc_object_t *object;
618 vout_thread_t *vout = GetVout( p_mi, 0 );
620 if( vout )
622 object = vlc_object_find_name( vout, name );
623 vlc_object_release(vout);
625 else
626 object = NULL;
628 if( !object )
629 libvlc_printerr( "%s not enabled", name );
630 return object;
634 typedef const struct {
635 const char name[20];
636 unsigned type;
637 } opt_t;
640 static void
641 set_int( libvlc_media_player_t *p_mi, const char *restrict name,
642 const opt_t *restrict opt, int value )
644 if( !opt ) return;
646 if( !opt->type ) /* the enabler */
648 vout_thread_t *vout = GetVout( p_mi, 0 );
649 if (vout)
651 vout_EnableFilter( vout, opt->name, value, false );
652 vlc_object_release( vout );
654 return;
657 if( opt->type != VLC_VAR_INTEGER )
659 libvlc_printerr( "Invalid argument to %s in %s", name, "set int" );
660 return;
663 var_SetInteger(p_mi, opt->name, value);
664 vlc_object_t *object = get_object( p_mi, name );
665 if( object )
667 var_SetInteger(object, opt->name, value);
668 vlc_object_release( object );
673 static int
674 get_int( libvlc_media_player_t *p_mi, const char *restrict name,
675 const opt_t *restrict opt )
677 if( !opt ) return 0;
679 switch( opt->type )
681 case 0: /* the enabler */
683 vlc_object_t *object = get_object( p_mi, name );
684 vlc_object_release( object );
685 return object != NULL;
687 case VLC_VAR_INTEGER:
688 return var_GetInteger(p_mi, opt->name);
689 default:
690 libvlc_printerr( "Invalid argument to %s in %s", name, "get int" );
691 return 0;
696 static void
697 set_float( libvlc_media_player_t *p_mi, const char *restrict name,
698 const opt_t *restrict opt, float value )
700 if( !opt ) return;
702 if( opt->type != VLC_VAR_FLOAT )
704 libvlc_printerr( "Invalid argument to %s in %s", name, "set float" );
705 return;
708 var_SetFloat( p_mi, opt->name, value );
710 vlc_object_t *object = get_object( p_mi, name );
711 if( object )
713 var_SetFloat(object, opt->name, value );
714 vlc_object_release( object );
719 static float
720 get_float( libvlc_media_player_t *p_mi, const char *restrict name,
721 const opt_t *restrict opt )
723 if( !opt ) return 0.0;
726 if( opt->type != VLC_VAR_FLOAT )
728 libvlc_printerr( "Invalid argument to %s in %s", name, "get float" );
729 return 0.0;
732 return var_GetFloat( p_mi, opt->name );
736 static void
737 set_string( libvlc_media_player_t *p_mi, const char *restrict name,
738 const opt_t *restrict opt, const char *restrict psz_value )
740 if( !opt ) return;
742 if( opt->type != VLC_VAR_STRING )
744 libvlc_printerr( "Invalid argument to %s in %s", name, "set string" );
745 return;
748 var_SetString( p_mi, opt->name, psz_value );
750 vlc_object_t *object = get_object( p_mi, name );
751 if( object )
753 var_SetString(object, opt->name, psz_value );
754 vlc_object_release( object );
759 static char *
760 get_string( libvlc_media_player_t *p_mi, const char *restrict name,
761 const opt_t *restrict opt )
763 if( !opt ) return NULL;
765 if( opt->type != VLC_VAR_STRING )
767 libvlc_printerr( "Invalid argument to %s in %s", name, "get string" );
768 return NULL;
771 return var_GetString( p_mi, opt->name );
775 static const opt_t *
776 marq_option_bynumber(unsigned option)
778 static const opt_t optlist[] =
780 { "marq", 0 },
781 { "marq-marquee", VLC_VAR_STRING },
782 { "marq-color", VLC_VAR_INTEGER },
783 { "marq-opacity", VLC_VAR_INTEGER },
784 { "marq-position", VLC_VAR_INTEGER },
785 { "marq-refresh", VLC_VAR_INTEGER },
786 { "marq-size", VLC_VAR_INTEGER },
787 { "marq-timeout", VLC_VAR_INTEGER },
788 { "marq-x", VLC_VAR_INTEGER },
789 { "marq-y", VLC_VAR_INTEGER },
791 enum { num_opts = sizeof(optlist) / sizeof(*optlist) };
793 const opt_t *r = option < num_opts ? optlist+option : NULL;
794 if( !r )
795 libvlc_printerr( "Unknown marquee option" );
796 return r;
799 static vlc_object_t *get_object( libvlc_media_player_t *, const char *);
801 /*****************************************************************************
802 * libvlc_video_get_marquee_int : get a marq option value
803 *****************************************************************************/
804 int libvlc_video_get_marquee_int( libvlc_media_player_t *p_mi,
805 unsigned option )
807 return get_int( p_mi, "marq", marq_option_bynumber(option) );
810 /*****************************************************************************
811 * libvlc_video_get_marquee_string : get a marq option value
812 *****************************************************************************/
813 char * libvlc_video_get_marquee_string( libvlc_media_player_t *p_mi,
814 unsigned option )
816 return get_string( p_mi, "marq", marq_option_bynumber(option) );
819 /*****************************************************************************
820 * libvlc_video_set_marquee_int: enable, disable or set an int option
821 *****************************************************************************/
822 void libvlc_video_set_marquee_int( libvlc_media_player_t *p_mi,
823 unsigned option, int value )
825 set_int( p_mi, "marq", marq_option_bynumber(option), value );
828 /*****************************************************************************
829 * libvlc_video_set_marquee_string: set a string option
830 *****************************************************************************/
831 void libvlc_video_set_marquee_string( libvlc_media_player_t *p_mi,
832 unsigned option, const char * value )
834 set_string( p_mi, "marq", marq_option_bynumber(option), value );
838 /* logo module support */
841 static const opt_t *
842 logo_option_bynumber( unsigned option )
844 static const opt_t vlogo_optlist[] =
845 /* depends on libvlc_video_logo_option_t */
847 { "logo", 0 },
848 { "logo-file", VLC_VAR_STRING },
849 { "logo-x", VLC_VAR_INTEGER },
850 { "logo-y", VLC_VAR_INTEGER },
851 { "logo-delay", VLC_VAR_INTEGER },
852 { "logo-repeat", VLC_VAR_INTEGER },
853 { "logo-opacity", VLC_VAR_INTEGER },
854 { "logo-position", VLC_VAR_INTEGER },
856 enum { num_vlogo_opts = sizeof(vlogo_optlist) / sizeof(*vlogo_optlist) };
858 const opt_t *r = option < num_vlogo_opts ? vlogo_optlist+option : NULL;
859 if( !r )
860 libvlc_printerr( "Unknown logo option" );
861 return r;
865 void libvlc_video_set_logo_string( libvlc_media_player_t *p_mi,
866 unsigned option, const char *psz_value )
868 set_string( p_mi,"logo",logo_option_bynumber(option),psz_value );
872 void libvlc_video_set_logo_int( libvlc_media_player_t *p_mi,
873 unsigned option, int value )
875 set_int( p_mi, "logo", logo_option_bynumber(option), value );
879 int libvlc_video_get_logo_int( libvlc_media_player_t *p_mi,
880 unsigned option )
882 return get_int( p_mi, "logo", logo_option_bynumber(option) );
886 /* adjust module support */
889 static const opt_t *
890 adjust_option_bynumber( unsigned option )
892 static const opt_t optlist[] =
894 { "adjust", 0 },
895 { "contrast", VLC_VAR_FLOAT },
896 { "brightness", VLC_VAR_FLOAT },
897 { "hue", VLC_VAR_INTEGER },
898 { "saturation", VLC_VAR_FLOAT },
899 { "gamma", VLC_VAR_FLOAT },
901 enum { num_opts = sizeof(optlist) / sizeof(*optlist) };
903 const opt_t *r = option < num_opts ? optlist+option : NULL;
904 if( !r )
905 libvlc_printerr( "Unknown adjust option" );
906 return r;
910 void libvlc_video_set_adjust_int( libvlc_media_player_t *p_mi,
911 unsigned option, int value )
913 set_int( p_mi, "adjust", adjust_option_bynumber(option), value );
917 int libvlc_video_get_adjust_int( libvlc_media_player_t *p_mi,
918 unsigned option )
920 return get_int( p_mi, "adjust", adjust_option_bynumber(option) );
924 void libvlc_video_set_adjust_float( libvlc_media_player_t *p_mi,
925 unsigned option, float value )
927 set_float( p_mi, "adjust", adjust_option_bynumber(option), value );
931 float libvlc_video_get_adjust_float( libvlc_media_player_t *p_mi,
932 unsigned option )
934 return get_float( p_mi, "adjust", adjust_option_bynumber(option) );