qml: change color of Widgets.IconLabel
[vlc.git] / src / input / demux.h
blobf7290181056cfcb9fd0141fba4c999f95ee003e7
1 /*****************************************************************************
2 * demux.h: Input demux functions
3 *****************************************************************************
4 * Copyright (C) 1998-2008 VLC authors and VideoLAN
5 * Copyright (C) 2008 Laurent Aimar
7 * Authors: Laurent Aimar <fenrir@via.ecp.fr>
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.
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.
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 *****************************************************************************/
24 #ifndef LIBVLC_INPUT_DEMUX_H
25 #define LIBVLC_INPUT_DEMUX_H 1
27 #include <vlc_common.h>
28 #include <vlc_demux.h>
30 #include "stream.h"
32 /* stream_t *s could be null and then it mean a access+demux in one */
33 demux_t *demux_NewAdvanced( vlc_object_t *p_obj, input_thread_t *p_parent_input,
34 const char *psz_demux, const char *url,
35 stream_t *s, es_out_t *out, bool );
37 unsigned demux_TestAndClearFlags( demux_t *, unsigned );
38 int demux_GetTitle( demux_t * );
39 int demux_GetSeekpoint( demux_t * );
41 /**
42 * Builds an explicit chain of demux filters.
44 * This function creates a chain of filters according to a supplied list.
46 * See also stream_FilterChainNew(). Those two functions have identical
47 * semantics and ownership rules, except for the use of demux vs stream.
49 * @param source input stream around which to build a filter chain
50 * @param list colon-separated list of stream filters (upstream first)
52 * @note Like stream_FilterAutoNew(), this function takes ownership of the
53 * source input stream, and transfers it to the first demux filter in the
54 * constructed chain. Any use of the source after the function call is invalid
55 * and undefined (unless the chain ends up empty).
57 * @return The last demux (filter) in the chain.
58 * The return value is always a valid (non-NULL) demux pointer.
60 demux_t *demux_FilterChainNew( demux_t *source, const char *list ) VLC_USED;
62 bool demux_FilterEnable( demux_t *p_demux_chain, const char* psz_demux );
63 bool demux_FilterDisable( demux_t *p_demux_chain, const char* psz_demux );
65 #endif