FFmpeg
|
librtmp.c File Reference
RTMP protocol based on http://rtmpdump.mplayerhq.hu/ librtmp. More...
#include "libavutil/avstring.h"
#include "libavutil/mathematics.h"
#include "libavutil/opt.h"
#include "avformat.h"
#include "url.h"
#include <librtmp/rtmp.h>
#include <librtmp/log.h>
Include dependency graph for librtmp.c:
Go to the source code of this file.
Data Structures | |
struct | LibRTMPContext |
Macros | |
#define | OFFSET(x) offsetof(LibRTMPContext, x) |
#define | DEC AV_OPT_FLAG_DECODING_PARAM |
#define | ENC AV_OPT_FLAG_ENCODING_PARAM |
#define | RTMP_CLASS(flavor) |
Typedefs | |
typedef struct LibRTMPContext | LibRTMPContext |
Functions | |
static void | rtmp_log (int level, const char *fmt, va_list args) |
static int | rtmp_close (URLContext *s) |
static int | rtmp_open (URLContext *s, const char *uri, int flags) |
Open RTMP connection and verify that the stream can be played. More... | |
static int | rtmp_write (URLContext *s, const uint8_t *buf, int size) |
static int | rtmp_read (URLContext *s, uint8_t *buf, int size) |
static int | rtmp_read_pause (URLContext *s, int pause) |
static int64_t | rtmp_read_seek (URLContext *s, int stream_index, int64_t timestamp, int flags) |
static int | rtmp_get_file_handle (URLContext *s) |
Detailed Description
RTMP protocol based on http://rtmpdump.mplayerhq.hu/ librtmp.
Definition in file librtmp.c.
Macro Definition Documentation
#define DEC AV_OPT_FLAG_DECODING_PARAM |
#define ENC AV_OPT_FLAG_ENCODING_PARAM |
#define OFFSET | ( | x | ) | offsetof(LibRTMPContext, x) |
#define RTMP_CLASS | ( | flavor | ) |
Value:
.item_name = av_default_item_name,\
.option = options,\
.version = LIBAVUTIL_VERSION_INT,\
};
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:55
Typedef Documentation
typedef struct LibRTMPContext LibRTMPContext |
Function Documentation
|
static |
|
static |
|
static |
Definition at line 43 of file librtmp.c.
Referenced by rtmp_open().
|
static |
Open RTMP connection and verify that the stream can be played.
URL syntax: rtmp://server[:port][/app][/playpath][ keyword=value]... where 'app' is first one or two directories in the path (e.g. /ondemand/, /flash/live/, etc.) and 'playpath' is a file name (the rest of the path, may be prefixed with "mp4:")
Additional RTMP library options may be appended as space-separated key-value pairs.
|
static |
|
static |
|
static |
|
static |
Variable Documentation
URLProtocol ff_librtmp_protocol |
Initial value:
= {
.name = "rtmp",
.url_open = rtmp_open,
.url_read = rtmp_read,
.url_write = rtmp_write,
.url_close = rtmp_close,
.url_read_pause = rtmp_read_pause,
.url_read_seek = rtmp_read_seek,
.url_get_file_handle = rtmp_get_file_handle,
.priv_data_size = sizeof(LibRTMPContext),
.priv_data_class = &librtmp_class,
}
static int64_t rtmp_read_seek(URLContext *s, int stream_index, int64_t timestamp, int flags)
Definition: librtmp.c:166
static int rtmp_open(URLContext *s, const char *uri, int flags)
Open RTMP connection and verify that the stream can be played.
Definition: librtmp.c:80
static int rtmp_write(URLContext *s, const uint8_t *buf, int size)
Definition: librtmp.c:140
struct LibRTMPContext LibRTMPContext
URLProtocol ff_librtmpe_protocol |
Initial value:
= {
.name = "rtmpe",
.url_open = rtmp_open,
.url_read = rtmp_read,
.url_write = rtmp_write,
.url_close = rtmp_close,
.url_read_pause = rtmp_read_pause,
.url_read_seek = rtmp_read_seek,
.url_get_file_handle = rtmp_get_file_handle,
.priv_data_size = sizeof(LibRTMPContext),
.priv_data_class = &librtmpe_class,
}
static int64_t rtmp_read_seek(URLContext *s, int stream_index, int64_t timestamp, int flags)
Definition: librtmp.c:166
static int rtmp_open(URLContext *s, const char *uri, int flags)
Open RTMP connection and verify that the stream can be played.
Definition: librtmp.c:80
static int rtmp_write(URLContext *s, const uint8_t *buf, int size)
Definition: librtmp.c:140
struct LibRTMPContext LibRTMPContext
URLProtocol ff_librtmps_protocol |
Initial value:
= {
.name = "rtmps",
.url_open = rtmp_open,
.url_read = rtmp_read,
.url_write = rtmp_write,
.url_close = rtmp_close,
.url_read_pause = rtmp_read_pause,
.url_read_seek = rtmp_read_seek,
.url_get_file_handle = rtmp_get_file_handle,
.priv_data_size = sizeof(LibRTMPContext),
.priv_data_class = &librtmps_class,
}
static int64_t rtmp_read_seek(URLContext *s, int stream_index, int64_t timestamp, int flags)
Definition: librtmp.c:166
static int rtmp_open(URLContext *s, const char *uri, int flags)
Open RTMP connection and verify that the stream can be played.
Definition: librtmp.c:80
static int rtmp_write(URLContext *s, const uint8_t *buf, int size)
Definition: librtmp.c:140
struct LibRTMPContext LibRTMPContext
URLProtocol ff_librtmpt_protocol |
Initial value:
= {
.name = "rtmpt",
.url_open = rtmp_open,
.url_read = rtmp_read,
.url_write = rtmp_write,
.url_close = rtmp_close,
.url_read_pause = rtmp_read_pause,
.url_read_seek = rtmp_read_seek,
.url_get_file_handle = rtmp_get_file_handle,
.priv_data_size = sizeof(LibRTMPContext),
.priv_data_class = &librtmpt_class,
}
static int64_t rtmp_read_seek(URLContext *s, int stream_index, int64_t timestamp, int flags)
Definition: librtmp.c:166
static int rtmp_open(URLContext *s, const char *uri, int flags)
Open RTMP connection and verify that the stream can be played.
Definition: librtmp.c:80
static int rtmp_write(URLContext *s, const uint8_t *buf, int size)
Definition: librtmp.c:140
struct LibRTMPContext LibRTMPContext
URLProtocol ff_librtmpte_protocol |
Initial value:
= {
.name = "rtmpte",
.url_open = rtmp_open,
.url_read = rtmp_read,
.url_write = rtmp_write,
.url_close = rtmp_close,
.url_read_pause = rtmp_read_pause,
.url_read_seek = rtmp_read_seek,
.url_get_file_handle = rtmp_get_file_handle,
.priv_data_size = sizeof(LibRTMPContext),
.priv_data_class = &librtmpte_class,
}
static int64_t rtmp_read_seek(URLContext *s, int stream_index, int64_t timestamp, int flags)
Definition: librtmp.c:166
static int rtmp_open(URLContext *s, const char *uri, int flags)
Open RTMP connection and verify that the stream can be played.
Definition: librtmp.c:80
static int rtmp_write(URLContext *s, const uint8_t *buf, int size)
Definition: librtmp.c:140
struct LibRTMPContext LibRTMPContext
|
static |
Initial value:
= {
{"rtmp_app", "Name of application to connect to on the RTMP server", OFFSET(app), AV_OPT_TYPE_STRING, {.str = NULL }, 0, 0, DEC|ENC},
{"rtmp_playpath", "Stream identifier to play or to publish", OFFSET(playpath), AV_OPT_TYPE_STRING, {.str = NULL }, 0, 0, DEC|ENC},
{ NULL },
}
Definition: opt.h:226
Generated on Mon Nov 18 2024 06:52:07 for FFmpeg by 1.8.11