libavformat/rtmphttp.c File Reference

RTMP HTTP protocol. More...

#include "libavutil/avstring.h"
#include "libavutil/intfloat.h"
#include "libavutil/opt.h"
#include "libavutil/time.h"
#include "internal.h"
#include "http.h"
#include "rtmp.h"

Go to the source code of this file.

Data Structures

struct  RTMP_HTTPContext

Defines

#define RTMPT_DEFAULT_PORT   80
#define RTMPTS_DEFAULT_PORT   RTMPS_DEFAULT_PORT
#define OFFSET(x)   offsetof(RTMP_HTTPContext, x)
#define DEC   AV_OPT_FLAG_DECODING_PARAM

Functions

static int rtmp_http_send_cmd (URLContext *h, const char *cmd)
static int rtmp_http_write (URLContext *h, const uint8_t *buf, int size)
static int rtmp_http_read (URLContext *h, uint8_t *buf, int size)
static int rtmp_http_close (URLContext *h)
static int rtmp_http_open (URLContext *h, const char *uri, int flags)

Variables

static const AVOption ffrtmphttp_options []
static const AVClass ffrtmphttp_class
URLProtocol ff_ffrtmphttp_protocol


Detailed Description

RTMP HTTP protocol.

Definition in file rtmphttp.c.


Define Documentation

#define DEC   AV_OPT_FLAG_DECODING_PARAM

Definition at line 253 of file rtmphttp.c.

#define OFFSET (  )     offsetof(RTMP_HTTPContext, x)

Definition at line 252 of file rtmphttp.c.

#define RTMPT_DEFAULT_PORT   80

Definition at line 35 of file rtmphttp.c.

Referenced by rtmp_http_open().

#define RTMPTS_DEFAULT_PORT   RTMPS_DEFAULT_PORT

Definition at line 36 of file rtmphttp.c.

Referenced by rtmp_http_open().


Function Documentation

static int rtmp_http_close ( URLContext h  )  [static]

Definition at line 156 of file rtmphttp.c.

Referenced by rtmp_http_open().

static int rtmp_http_open ( URLContext h,
const char *  uri,
int  flags 
) [static]

Definition at line 183 of file rtmphttp.c.

static int rtmp_http_read ( URLContext h,
uint8_t buf,
int  size 
) [static]

Definition at line 104 of file rtmphttp.c.

Referenced by rtmp_http_close().

static int rtmp_http_send_cmd ( URLContext h,
const char *  cmd 
) [static]

Definition at line 55 of file rtmphttp.c.

Referenced by rtmp_http_close(), and rtmp_http_read().

static int rtmp_http_write ( URLContext h,
const uint8_t buf,
int  size 
) [static]

Definition at line 85 of file rtmphttp.c.

Referenced by rtmp_http_close(), and rtmp_http_read().


Variable Documentation

Initial value:

 {
    .name           = "ffrtmphttp",
    .url_open       = rtmp_http_open,
    .url_read       = rtmp_http_read,
    .url_write      = rtmp_http_write,
    .url_close      = rtmp_http_close,
    .priv_data_size = sizeof(RTMP_HTTPContext),
    .flags          = URL_PROTOCOL_FLAG_NETWORK,
    .priv_data_class= &ffrtmphttp_class,
}

Definition at line 267 of file rtmphttp.c.

const AVClass ffrtmphttp_class [static]

Initial value:

 {
    .class_name = "ffrtmphttp",
    .item_name  = av_default_item_name,
    .option     = ffrtmphttp_options,
    .version    = LIBAVUTIL_VERSION_INT,
}

Definition at line 260 of file rtmphttp.c.

const AVOption ffrtmphttp_options[] [static]

Initial value:

 {
    {"ffrtmphttp_tls", "Use a HTTPS tunneling connection (RTMPTS).", OFFSET(tls), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 1, DEC},
    { NULL },
}

Definition at line 255 of file rtmphttp.c.


Generated on Fri Oct 26 02:50:11 2012 for FFmpeg by  doxygen 1.5.8