]> git.sesse.net Git - vlc/blob - src/input/ressource.h
ec49c2ac6f8dd8f574d68667aabaae3ab30e22fc
[vlc] / src / input / ressource.h
1 /*****************************************************************************
2  * ressource.h
3  *****************************************************************************
4  * Copyright (C) 2008 Laurent Aimar
5  * $Id$
6  *
7  * Authors: Laurent Aimar < fenrir _AT_ videolan _DOT_ org >
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 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 General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22  *****************************************************************************/
23
24 #if defined(__PLUGIN__) || defined(__BUILTIN__) || !defined(__LIBVLC__)
25 # error This header file can only be included from LibVLC.
26 #endif
27
28 #ifndef _INPUT_RESSOURCE_H
29 #define _INPUT_RESSOURCE_H 1
30
31 #include <vlc_common.h>
32
33 /**
34  * This function creates an empty input_ressource_t.
35  */
36 input_ressource_t *input_ressource_New( void );
37
38 /**
39  * This function set the associated input.
40  */
41 void input_ressource_SetInput( input_ressource_t *, input_thread_t * );
42
43 /**
44  * This function handles sout request.
45  */
46 sout_instance_t *input_ressource_RequestSout( input_ressource_t *, sout_instance_t *, const char *psz_sout );
47
48 /**
49  * This function handles aout request.
50  */
51 aout_instance_t *input_ressource_RequestAout( input_ressource_t *, aout_instance_t * );
52
53 /**
54  * This function handles vout request.
55  */
56 vout_thread_t *input_ressource_RequestVout( input_ressource_t *, vout_thread_t *, video_format_t * );
57
58 /**
59  * This function return the current vout if any.
60  *
61  * You must call vlc_object_release on the value returned (if non NULL).
62  */
63 vout_thread_t *input_ressource_HoldVout( input_ressource_t * );
64
65 #endif
66