1 /*****************************************************************************
2 * video.c: libvlc new API video functions
3 *****************************************************************************
4 * Copyright (C) 2005-2010 VLC authors and VideoLAN
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 *****************************************************************************/
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>
40 #include "media_player_internal.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
);
55 vout_thread_t
**pp_vouts
;
56 if (input_Control( p_input
, INPUT_GET_VOUTS
, &pp_vouts
, n
))
61 vlc_object_release (p_input
);
65 static vout_thread_t
*GetVout (libvlc_media_player_t
*mp
, size_t num
)
67 vout_thread_t
*p_vout
= NULL
;
69 vout_thread_t
**pp_vouts
= GetVouts (mp
, &n
);
74 p_vout
= pp_vouts
[num
];
76 for (size_t i
= 0; i
< n
; i
++)
78 vlc_object_release (pp_vouts
[i
]);
83 libvlc_printerr ("Video output not active");
87 /**********************************************************************
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) */
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
]);
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) */
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
);
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
);
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
);
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
;
174 int infos
= libvlc_media_get_tracks_info(p_mi
->p_md
, &info
);
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
;
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
))
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
))
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
);
215 var_GetCoords (p_vout
, "mouse-moved", px
, py
);
216 vlc_object_release (p_vout
);
220 unsigned libvlc_media_player_has_vout( libvlc_media_player_t
*p_mi
)
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
]);
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"))
238 void libvlc_video_set_scale( libvlc_media_player_t
*p_mp
, float f_scale
)
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) */
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
];
252 var_SetFloat (p_vout
, "scale", f_scale
);
253 var_SetBool (p_vout
, "autoscale", f_scale
== 0.);
254 vlc_object_release (p_vout
);
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
)
269 var_SetString (p_mi
, "aspect-ratio", psz_aspect
);
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
);
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" );
293 int i_spu
= var_GetInteger( p_input_thread
, "spu-es" );
294 vlc_object_release( p_input_thread
);
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
);
303 if( !p_input_thread
)
306 i_spu_count
= var_CountChoices( p_input_thread
, "spu-es" );
307 vlc_object_release( p_input_thread
);
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
);
323 if( !p_input_thread
)
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 )
337 libvlc_printerr( "Track identifier not found" );
339 vlc_object_release (p_input_thread
);
340 var_FreeList (&list
, NULL
);
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
);
352 if( !input_AddSubtitle( p_input_thread
, psz_subtitle
, true ) )
354 vlc_object_release( p_input_thread
);
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
);
366 val
= var_GetTime( p_input_thread
, "spu-delay" );
367 vlc_object_release( p_input_thread
);
371 libvlc_printerr( "No active input" );
377 int libvlc_video_set_spu_delay( libvlc_media_player_t
*p_mi
,
380 input_thread_t
*p_input_thread
= libvlc_get_input_thread( p_mi
);
385 var_SetTime( p_input_thread
, "spu-delay", i_delay
);
386 vlc_object_release( p_input_thread
);
391 libvlc_printerr( "No active input" );
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
,
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
)
423 var_SetString (p_mi
, "crop", psz_geometry
);
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
];
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
);
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
;
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
);
467 telx
= var_GetInteger( p_input_thread
, "teletext-es" );
468 if( input_GetEsObjects( p_input_thread
, telx
, &p_zvbi
, NULL
, NULL
)
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
);
489 const bool b_selected
= var_GetInteger( p_input_thread
, "teletext-es" ) >= 0;
492 var_SetInteger( p_input_thread
, "spu-es", -1 );
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
);
513 if( !p_input_thread
)
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
)
535 int id
= var_GetInteger( p_input_thread
, "video-es" );
536 vlc_object_release( p_input_thread
);
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
;
546 if( !p_input_thread
)
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 )
560 libvlc_printerr( "Track identifier not found" );
562 var_FreeList( &val_list
, NULL
);
563 vlc_object_release( p_input_thread
);
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
)
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"))
585 var_SetString (p_mi
, "deinterlace-mode", psz_mode
);
586 var_SetInteger (p_mi
, "deinterlace", 1);
589 var_SetInteger (p_mi
, "deinterlace", 0);
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
];
599 var_SetString (p_vout
, "deinterlace-mode", psz_mode
);
600 var_SetInteger (p_vout
, "deinterlace", 1);
603 var_SetInteger (p_vout
, "deinterlace", 0);
604 vlc_object_release (p_vout
);
614 static vlc_object_t
*get_object( libvlc_media_player_t
* p_mi
,
617 vlc_object_t
*object
;
618 vout_thread_t
*vout
= GetVout( p_mi
, 0 );
622 object
= vlc_object_find_name( vout
, name
);
623 vlc_object_release(vout
);
629 libvlc_printerr( "%s not enabled", name
);
634 typedef const struct {
641 set_int( libvlc_media_player_t
*p_mi
, const char *restrict name
,
642 const opt_t
*restrict opt
, int value
)
646 if( !opt
->type
) /* the enabler */
648 vout_thread_t
*vout
= GetVout( p_mi
, 0 );
651 vout_EnableFilter( vout
, opt
->name
, value
, false );
652 vlc_object_release( vout
);
657 if( opt
->type
!= VLC_VAR_INTEGER
)
659 libvlc_printerr( "Invalid argument to %s in %s", name
, "set int" );
663 var_SetInteger(p_mi
, opt
->name
, value
);
664 vlc_object_t
*object
= get_object( p_mi
, name
);
667 var_SetInteger(object
, opt
->name
, value
);
668 vlc_object_release( object
);
674 get_int( libvlc_media_player_t
*p_mi
, const char *restrict name
,
675 const opt_t
*restrict opt
)
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
);
690 libvlc_printerr( "Invalid argument to %s in %s", name
, "get int" );
697 set_float( libvlc_media_player_t
*p_mi
, const char *restrict name
,
698 const opt_t
*restrict opt
, float value
)
702 if( opt
->type
!= VLC_VAR_FLOAT
)
704 libvlc_printerr( "Invalid argument to %s in %s", name
, "set float" );
708 var_SetFloat( p_mi
, opt
->name
, value
);
710 vlc_object_t
*object
= get_object( p_mi
, name
);
713 var_SetFloat(object
, opt
->name
, value
);
714 vlc_object_release( object
);
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" );
732 return var_GetFloat( p_mi
, opt
->name
);
737 set_string( libvlc_media_player_t
*p_mi
, const char *restrict name
,
738 const opt_t
*restrict opt
, const char *restrict psz_value
)
742 if( opt
->type
!= VLC_VAR_STRING
)
744 libvlc_printerr( "Invalid argument to %s in %s", name
, "set string" );
748 var_SetString( p_mi
, opt
->name
, psz_value
);
750 vlc_object_t
*object
= get_object( p_mi
, name
);
753 var_SetString(object
, opt
->name
, psz_value
);
754 vlc_object_release( object
);
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" );
771 return var_GetString( p_mi
, opt
->name
);
776 marq_option_bynumber(unsigned option
)
778 static const opt_t optlist
[] =
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
;
795 libvlc_printerr( "Unknown marquee option" );
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
,
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
,
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 */
842 logo_option_bynumber( unsigned option
)
844 static const opt_t vlogo_optlist
[] =
845 /* depends on libvlc_video_logo_option_t */
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
;
860 libvlc_printerr( "Unknown logo option" );
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
,
882 return get_int( p_mi
, "logo", logo_option_bynumber(option
) );
886 /* adjust module support */
890 adjust_option_bynumber( unsigned option
)
892 static const opt_t optlist
[] =
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
;
905 libvlc_printerr( "Unknown adjust option" );
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
,
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
,
934 return get_float( p_mi
, "adjust", adjust_option_bynumber(option
) );