VLC  4.0.0-dev
live.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * live.h: HTTP read-only live stream declarations
3  *****************************************************************************
4  * Copyright (C) 2015 RĂ©mi Denis-Courmont
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU Lesser General Public License as published by
8  * the Free Software Foundation; either version 2.1 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public License
17  * along with this program; if not, write to the Free Software Foundation,
18  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
19  *****************************************************************************/
20 
21 /**
22  * \defgroup http_live Live streams
23  * Trivial HTTP-based live streams
24  * \ingroup http_res
25  * @{
26  */
27 
28 struct vlc_http_resource;
29 struct block_t;
30 
32  const char *uri, const char *ua,
33  const char *ref);
35 
36 #define vlc_http_live_get_status vlc_http_res_get_status
37 #define vlc_http_live_get_redirect vlc_http_res_get_redirect
38 #define vlc_http_live_get_type vlc_http_res_get_type
39 #define vlc_http_live_destroy vlc_http_res_destroy
40 
41 /** @} */
Definition: connmgr.c:99
Definition: resource.h:43
struct block_t * vlc_http_live_read(struct vlc_http_resource *)
Definition: live.c:75
struct vlc_http_resource * vlc_http_live_create(struct vlc_http_mgr *mgr, const char *uri, const char *ua, const char *ref)
Definition: live.c:58
Definition: vlc_block.h:117