VLC 4.0.0-dev
vout_private.h
Go to the documentation of this file.
1/*****************************************************************************
2 * vout_private.h : Internal vout definitions
3 *****************************************************************************
4 * Copyright (C) 2008-2018 VLC authors and VideoLAN
5 * Copyright (C) 2008 Laurent Aimar
6 *
7 * Authors: Laurent Aimar < fenrir _AT_ videolan _DOT_ org >
8 *
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU Lesser General Public License as published by
11 * the Free Software Foundation; either version 2.1 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public License
20 * along with this program; if not, write to the Free Software Foundation,
21 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
23
24#ifndef LIBVLC_VOUT_PRIVATE_H
25#define LIBVLC_VOUT_PRIVATE_H 1
26
27#include <vlc_picture_fifo.h>
28#include <vlc_picture_pool.h>
29#include <vlc_vout_display.h>
30
32
33/* */
35{
36 struct {
41
44};
45
46/* */
50
54
55#endif // LIBVLC_VOUT_PRIVATE_H
Definition: picture_pool.c:43
video format description
Definition: vlc_es.h:352
Definition: decoder_device.c:97
User configuration for a video output display (vout_display_t)
Definition: vlc_vout_display.h:116
Definition: vlc_vout_display.h:337
Definition: vout_private.h:35
bool is_interlaced
Definition: vout_private.h:37
vlc_tick_t date
Definition: vout_private.h:39
picture_pool_t * display_pool
Definition: vout_private.h:43
struct vout_thread_private_t::@134 interlacing
picture_pool_t * private_pool
Definition: vout_private.h:42
bool has_deint
Definition: vout_private.h:38
Video output thread descriptor.
Definition: vlc_vout.h:55
This file defines picture fifo structures and functions in vlc.
This file defines picture pool structures and functions in vlc.
int64_t vlc_tick_t
High precision date or time interval.
Definition: vlc_tick.h:45
Video output display modules interface.
void vout_ReinitInterlacingSupport(vout_thread_t *, vout_thread_private_t *)
Definition: interlacing.c:153
void vout_InitInterlacingSupport(vout_thread_t *, vout_thread_private_t *)
Definition: interlacing.c:94
void vout_SetInterlacingState(vout_thread_t *, vout_thread_private_t *, bool is_interlaced)
Definition: interlacing.c:159
void vout_CloseWrapper(vout_thread_t *, vout_thread_private_t *, vout_display_t *vd)
Definition: vout_wrapper.c:133
vout_display_t * vout_OpenWrapper(vout_thread_t *, vout_thread_private_t *, const char *, const vout_display_cfg_t *, const video_format_t *, vlc_video_context *)
Definition: vout_wrapper.c:58