VLC 4.0.0-dev
Loading...
Searching...
No Matches
vout_wrapper.h
Go to the documentation of this file.
1/*****************************************************************************
2 * vout_wrapper.h: definitions for vout wrappers (temporary)
3 *****************************************************************************
4 * Copyright (C) 2009 Laurent Aimar
5 *
6 * Authors: Laurent Aimar <fenrir _AT_ videolan _DOT_ org>
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU Lesser General Public License as published by
10 * the Free Software Foundation; either version 2.1 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU Lesser General Public License for more details.
17 *
18 * You should have received a copy of the GNU Lesser General Public License
19 * along with this program; if not, write to the Free Software Foundation,
20 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
21 *****************************************************************************/
22
23#ifndef LIBVLC_VOUT_WRAPPER_H
24#define LIBVLC_VOUT_WRAPPER_H 1
25
26#include <vlc_vout_display.h>
27
28/* XXX DO NOT use it outside the vout module wrapper XXX */
29struct vout_crop;
30
33
35void vout_SetDisplayZoom(vout_display_t *, unsigned num, unsigned den);
36void vout_SetDisplayAspect(vout_display_t *, unsigned num, unsigned den);
40 vlc_video_context *vctx);
41
42/* The owner/caller is responsible for managing the lifetime of this ICC
43 * profile and always updating the display state to a consistent value */
45
46#endif /* LIBVLC_VOUT_WRAPPER_H */
47
vlc_video_fitting
Video automatic scale fitting.
Definition vlc_vout_display.h:84
Video picture.
Definition vlc_picture.h:130
video format description
Definition vlc_es.h:356
Definition vlc_ancillary.h:216
Definition decoder_device.c:98
Viewpoints.
Definition vlc_viewpoint.h:41
Definition vout_internal.h:102
Definition vlc_vout_display.h:329
Video output display modules interface.
void vout_FilterFlush(vout_display_t *)
Definition display.c:433
void vout_SetDisplayIccProfile(vout_display_t *, const vlc_icc_profile_t *)
Definition display.c:711
picture_t * vout_ConvertForDisplay(vout_display_t *, picture_t *)
Definition display.c:412
void vout_SetDisplayAspect(vout_display_t *, unsigned num, unsigned den)
Definition display.c:657
void vout_SetDisplayZoom(vout_display_t *, unsigned num, unsigned den)
Definition display.c:634
void vout_SetDisplayViewpoint(vout_display_t *, const vlc_viewpoint_t *)
Definition display.c:688
void vout_SetDisplayFitting(vout_display_t *, enum vlc_video_fitting)
Definition display.c:616
void vout_SetDisplayCrop(vout_display_t *, const struct vout_crop *)
int vout_SetDisplayFormat(vout_display_t *, const video_format_t *fmt, vlc_video_context *vctx)
Definition display.c:721