VLC  4.0.0-dev
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
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 */
29 
31 
35 
36 void vout_SetDisplayFilled(vout_display_t *, bool is_filled);
37 void vout_SetDisplayZoom(vout_display_t *, unsigned num, unsigned den);
38 void vout_SetDisplayAspect(vout_display_t *, unsigned num, unsigned den);
39 void vout_SetDisplayCrop(vout_display_t *, unsigned num, unsigned den,
40  unsigned left, unsigned top, int right, int bottom);
42 
43 #endif /* LIBVLC_VOUT_WRAPPER_H */
44 
Video picture.
Definition: vlc_picture.h:127
void vout_SetDisplayFilled(vout_display_t *, bool is_filled)
Definition: display.c:645
void vout_SetDisplayZoom(vout_display_t *, unsigned num, unsigned den)
Definition: display.c:658
void vout_SetDisplayAspect(vout_display_t *, unsigned num, unsigned den)
Definition: display.c:673
picture_pool_t * vout_GetPool(vout_display_t *vd, unsigned count)
It retreives a picture pool from the display.
Definition: display.c:424
Viewpoints.
Definition: vlc_viewpoint.h:41
size_t count
Definition: core.c:402
Video output display modules interface.
Definition: picture_pool.c:41
void vout_FilterFlush(vout_display_t *)
Definition: display.c:463
void vout_SetDisplayViewpoint(vout_display_t *, const vlc_viewpoint_t *)
Definition: display.c:715
picture_t * vout_ConvertForDisplay(vout_display_t *, picture_t *)
Definition: display.c:440
void vout_SetDisplayCrop(vout_display_t *, unsigned num, unsigned den, unsigned left, unsigned top, int right, int bottom)
Definition: display.c:692
bool vout_IsDisplayFiltered(vout_display_t *)
Definition: display.c:433
Definition: vlc_vout_display.h:272