VLC
3.0.15
|
Go to the source code of this file.
Functions | |
void | stream_CommonDelete (stream_t *s) |
stream_t * | stream_AccessNew (vlc_object_t *, input_thread_t *, bool, const char *) |
This function creates a raw stream_t from an URL. More... | |
stream_t * | stream_FilterAutoNew (stream_t *source) |
Probes stream filters automatically. More... | |
stream_t * | stream_FilterChainNew (stream_t *source, const char *list) |
Builds an explicit chain of stream filters. More... | |
int | stream_extractor_AttachParsed (stream_t **stream, const char *psz_data, char const **out_extra) |
Attach Stream Extractors according to specified data. More... | |
char * | get_path (const char *location) |
char* get_path | ( | const char * | location | ) |
References asprintf(), and vlc_uri2path().
Referenced by access_New(), and demux_NewAdvanced().
stream_t* stream_AccessNew | ( | vlc_object_t * | , |
input_thread_t * | , | ||
bool | , | ||
const char * | |||
) |
This function creates a raw stream_t from an URL.
Referenced by vlc_stream_NewURL().
void stream_CommonDelete | ( | stream_t * | s | ) |
Probes stream filters automatically.
This function automatically and repeatedly probes for applicable stream filters to append downstream of an existing stream. Any such filter will convert the stream into another stream, e.g. decompressing it or extracting the list of contained files (playlist).
This function transfers ownership of the supplied stream to the following stream filter, of the first stream filter to the second stream filter, and so on. Any attempt to access the original stream filter directly is explicitly undefined.
If, and only if, no filters were probed succesfully, a pointer to the unchanged source stream will be returned. Otherwise, this returns a stream filter. The return value is thus guaranteed to be non-NULL.
source | input stream around which to build a filter chain |
References msg_Dbg, and vlc_stream_FilterNew().
Builds an explicit chain of stream filters.
This function creates a chain of filters according to a supplied list.
See also stream_FilterAutoNew(). Those two functions have identical semantics; the only difference lies in how the list of probed filters is determined (manually versus automatically).
If the list is empty, or if probing each of the requested filters failed, this function will return a pointer to the supplied source stream.
source | input stream around which to build a filter chain |
list | colon-separated list of stream filters (upstream first) |
References msg_Warn, name, strdup(), strtok_r(), unlikely, and vlc_stream_FilterNew().
Referenced by se_AttachWrapper().