36 #include <librtmp/rtmp.h> 37 #include <librtmp/log.h> 112 RTMP_LogSetLevel(
level);
115 if (ctx->
app) len += strlen(ctx->
app) +
sizeof(
" app=");
116 if (ctx->
tcurl) len += strlen(ctx->
tcurl) +
sizeof(
" tcUrl=");
117 if (ctx->
pageurl) len += strlen(ctx->
pageurl) +
sizeof(
" pageUrl=");
121 char *sep, *p = ctx->
conn;
129 sep = strchr(p,
' ');
135 len += options *
sizeof(
" conn=");
136 len += strlen(ctx->
conn);
140 len += strlen(ctx->
playpath) +
sizeof(
" playpath=");
142 len +=
sizeof(
" live=1");
144 len += strlen(ctx->
subscribe) +
sizeof(
" subscribe=");
150 len +=
sizeof(
" swfUrl=");
153 len += strlen(ctx->
swfverify) +
sizeof(
" swfVfy=1");
155 len += strlen(ctx->
swfurl);
183 char *sep, *p = ctx->
conn;
189 sep = strchr(p,
' ');
226 if (!RTMP_SetupURL(r, filename)) {
234 if (!RTMP_Connect(r,
NULL) || !RTMP_ConnectStream(r, 0)) {
240 if (ctx->
buffer_size >= 0 && (flags & AVIO_FLAG_WRITE)) {
242 if (setsockopt(r->m_sb.sb_socket, SOL_SOCKET, SO_SNDBUF, &tmp,
sizeof(tmp))) {
262 RTMP *
r = &ctx->
rtmp;
264 return RTMP_Write(r, buf, size);
270 RTMP *
r = &ctx->
rtmp;
272 return RTMP_Read(r, buf, size);
278 RTMP *
r = &ctx->
rtmp;
280 if (!RTMP_Pause(r, pause))
286 int64_t timestamp,
int flags)
289 RTMP *
r = &ctx->
rtmp;
295 if (stream_index < 0)
299 if (!RTMP_SendSeek(r, timestamp))
307 RTMP *
r = &ctx->
rtmp;
309 return RTMP_Socket(r);
312 #define OFFSET(x) offsetof(LibRTMPContext, x) 313 #define DEC AV_OPT_FLAG_DECODING_PARAM 314 #define ENC AV_OPT_FLAG_ENCODING_PARAM 320 {
"rtmp_live",
"Specify that the media is a live stream.",
OFFSET(
live),
AV_OPT_TYPE_INT, {.i64 = 0}, INT_MIN, INT_MAX,
DEC,
"rtmp_live"},
336 #define RTMP_CLASS(flavor)\ 337 static const AVClass lib ## flavor ## _class = {\ 338 .class_name = "lib" #flavor " protocol",\ 339 .item_name = av_default_item_name,\ 341 .version = LIBAVUTIL_VERSION_INT,\ 355 .priv_data_class = &librtmp_class,
370 .priv_data_class = &librtmpt_class,
385 .priv_data_class = &librtmpe_class,
400 .priv_data_class = &librtmpte_class,
415 .priv_data_class = &librtmps_class,
#define URL_PROTOCOL_FLAG_NETWORK
static int64_t rtmp_read_seek(URLContext *s, int stream_index, int64_t timestamp, int flags)
const URLProtocol ff_librtmps_protocol
#define AV_LOG_WARNING
Something somehow does not look correct.
int is_streamed
true if streamed (no seek possible), default = false
#define AVIO_FLAG_WRITE
write-only
static int rtmp_read_pause(URLContext *s, int pause)
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.
#define AV_LOG_VERBOSE
Detailed information.
const URLProtocol ff_librtmpt_protocol
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
static void rtmp_log(int level, const char *fmt, va_list args)
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
int av_log_get_level(void)
Get the current log level.
const URLProtocol ff_librtmp_protocol
size_t av_strlcpy(char *dst, const char *src, size_t size)
Copy the string src to dst, but no more than size - 1 bytes, and null-terminate dst.
#define AV_TIME_BASE
Internal time base represented as integer.
const char AVS_Value args
int64_t av_rescale_rnd(int64_t a, int64_t b, int64_t c, enum AVRounding rnd)
Rescale a 64-bit integer with specified rounding.
char * client_buffer_time
#define AV_LOG_INFO
Standard information.
static const AVOption options[]
Describe the class of an AVClass context structure.
void av_vlog(void *avcl, int level, const char *fmt, va_list vl)
Send the specified message to the log if the level is less than or equal to the current av_log_level...
static int rtmp_write(URLContext *s, const uint8_t *buf, int size)
size_t av_strlcat(char *dst, const char *src, size_t size)
Append the string src to the string dst, but to a total length of no more than size - 1 bytes...
const URLProtocol ff_librtmpte_protocol
char * filename
specified URL
#define AVERROR_UNKNOWN
Unknown error, typically from an external library.
static int rtmp_get_file_handle(URLContext *s)
static int rtmp_read(URLContext *s, uint8_t *buf, int size)
const URLProtocol ff_librtmpe_protocol
unbuffered private I/O API
#define AV_LOG_FATAL
Something went wrong and recovery is not possible.
#define AVERROR_EXTERNAL
Generic error in an external library.
#define RTMP_CLASS(flavor)