contribs: unbreak libxml compilation on Darwin
[vlc/vlc-acra.git] / src / video_output / vout_control.h
blob12b057d1f77185ddb2c92a0d1437edf48d86d961
1 /*****************************************************************************
2 * vout_control.h : Vout control function definitions
3 *****************************************************************************
4 * Copyright (C) 2008 VLC authors and VideoLAN
5 * Copyright (C) 2008 Laurent Aimar
6 * $Id$
8 * Authors: Laurent Aimar < fenrir _AT_ videolan _DOT_ org >
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU Lesser General Public License as published by
12 * the Free Software Foundation; either version 2.1 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public License
21 * along with this program; if not, write to the Free Software Foundation,
22 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
23 *****************************************************************************/
25 #ifndef LIBVLC_VOUT_CONTROL_H
26 #define LIBVLC_VOUT_CONTROL_H 1
28 /**
29 * This function will (un)pause the display of pictures.
30 * It is thread safe
32 void vout_ChangePause( vout_thread_t *, bool b_paused, mtime_t i_date );
34 /**
35 * This function will apply an offset on subtitle subpicture.
37 void spu_OffsetSubtitleDate( spu_t *p_spu, mtime_t i_duration );
39 /**
40 * This function will return and reset internal statistics.
42 void vout_GetResetStatistic( vout_thread_t *p_vout, int *pi_displayed, int *pi_lost );
44 /**
45 * This function will ensure that all ready/displayed pciture have at most
46 * the provided dat
48 void vout_Flush( vout_thread_t *p_vout, mtime_t i_date );
50 /**
51 * This function will try to detect if pictures are being leaked. If so it
52 * will release them.
54 * XXX This function is there to workaround bugs in decoder
56 void vout_FixLeaks( vout_thread_t *p_vout );
59 * Reset the states of the vout.
61 void vout_Reset( vout_thread_t *p_vout );
63 /**
64 * This function will force to display the next picture while paused
66 void vout_NextPicture( vout_thread_t *p_vout, mtime_t *pi_duration );
68 /**
69 * This function will ask the display of the input title
71 void vout_DisplayTitle( vout_thread_t *p_vout, const char *psz_title );
73 /**
74 * This function will return true if no more pictures are to be displayed.
76 bool vout_IsEmpty( vout_thread_t *p_vout );
78 #endif