QVisu
Qt-based visualization for smart homes
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
vlc_picture_fifo.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * vlc_picture_fifo.h: picture fifo definitions
3  *****************************************************************************
4  * Copyright (C) 2009 VLC authors and VideoLAN
5  * $Id: 73d1b20c279f628cf94bc7cfc83b2548878bcc07 $
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 VLC_PICTURE_FIFO_H
25 #define VLC_PICTURE_FIFO_H 1
26 
32 #include <vlc_picture.h>
33 
40 
44 VLC_API picture_fifo_t * picture_fifo_New( void ) VLC_USED;
45 
51 VLC_API void picture_fifo_Delete( picture_fifo_t * );
52 
58 VLC_API picture_t * picture_fifo_Pop( picture_fifo_t * ) VLC_USED;
59 
67 VLC_API picture_t * picture_fifo_Peek( picture_fifo_t * ) VLC_USED;
68 
72 VLC_API void picture_fifo_Push( picture_fifo_t *, picture_t * );
73 
80 VLC_API void picture_fifo_Flush( picture_fifo_t *, mtime_t date, bool flush_before );
81 
85 VLC_API void picture_fifo_OffsetDate( picture_fifo_t *, mtime_t delta );
86 
87 
88 #endif /* VLC_PICTURE_FIFO_H */
89 
VLC_API picture_t * picture_fifo_Peek(picture_fifo_t *) VLC_USED
Definition: vlc_picture.h:69
VLC_API void picture_fifo_Delete(picture_fifo_t *)
struct picture_fifo_t picture_fifo_t
Definition: vlc_picture_fifo.h:39
VLC_API void picture_fifo_Push(picture_fifo_t *, picture_t *)
VLC_API picture_fifo_t * picture_fifo_New(void) VLC_USED
VLC_API void picture_fifo_OffsetDate(picture_fifo_t *, mtime_t delta)
int64_t mtime_t
Definition: vlc_common.h:153
VLC_API picture_t * picture_fifo_Pop(picture_fifo_t *) VLC_USED
VLC_API void picture_fifo_Flush(picture_fifo_t *, mtime_t date, bool flush_before)