OpenFFmpeg
Classes | Typedefs | Variables
hlsproto.c File Reference

Apple HTTP Live Streaming Protocol Handler http://tools.ietf.org/html/draft-pantos-http-live-streaming. More...

#include "libavutil/avstring.h"
#include "libavutil/time.h"
#include "avformat.h"
#include "avio_internal.h"
#include "internal.h"
#include "url.h"
#include "version.h"

Classes

struct  segment
 
struct  variant
 
struct  HLSContext
 
struct  variant_info
 

Typedefs

typedef struct HLSContext HLSContext
 

Variables

const URLProtocol ff_hls_protocol
 

Detailed Description

Apple HTTP Live Streaming Protocol Handler http://tools.ietf.org/html/draft-pantos-http-live-streaming.

Variable Documentation

§ ff_hls_protocol

const URLProtocol ff_hls_protocol
Initial value:
= {
.name = "hls",
.url_open = hls_open,
.url_read = hls_read,
.url_close = hls_close,
.flags = URL_PROTOCOL_FLAG_NESTED_SCHEME,
.priv_data_size = sizeof(HLSContext),
}
Definition: hls.c:189