* qatar/master: (21 commits) CDXL demuxer and decoder hls: Re-add legacy applehttp name to preserve interface compatibility. hlsproto: Rename the functions and context hlsproto: Encourage users to try the hls demuxer instead of the proto doc: Move the hls protocol section into the right place libavformat: Rename the applehttp protocol to hls hls: Rename the functions and context libavformat: Rename the applehttp demuxer to hls rtpdec: Support H263 in RFC 2190 format rv30: check block type validity ttadec: CRC checking movenc: Support muxing VC1 avconv: Don't split out inline sequence headers when stream copying VC1 rv34: handle size changes during frame multithreading rv40: prevent undefined signed overflow in rv40_loop_filter() rv34: use AVERROR return values in ff_rv34_decode_frame() rv34: use uint16_t for RV34DecContext.deblock_coefs librtmp: Add "lib" prefix to librtmp URLProtocol declarations. movenc: Use defines instead of hardcoded numbers for RTCP types smjpegdec: implement seeking ... Conflicts: Changelog doc/general.texi libavcodec/avcodec.h libavcodec/rv30.c libavcodec/tta.c libavcodec/version.h libavformat/Makefile libavformat/allformats.c libavformat/version.h libswscale/x86/swscale_mmx.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
		
			
				
	
	
		
			219 lines
		
	
	
		
			6.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			219 lines
		
	
	
		
			6.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * RTMP network protocol
 | |
|  * Copyright (c) 2010 Howard Chu
 | |
|  *
 | |
|  * This file is part of FFmpeg.
 | |
|  *
 | |
|  * FFmpeg is free software; you can redistribute it and/or
 | |
|  * modify it under the terms of the GNU Lesser General Public
 | |
|  * License as published by the Free Software Foundation; either
 | |
|  * version 2.1 of the License, or (at your option) any later version.
 | |
|  *
 | |
|  * FFmpeg is distributed in the hope that it will be useful,
 | |
|  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
|  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | |
|  * Lesser General Public License for more details.
 | |
|  *
 | |
|  * You should have received a copy of the GNU Lesser General Public
 | |
|  * License along with FFmpeg; if not, write to the Free Software
 | |
|  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 | |
|  */
 | |
| 
 | |
| /**
 | |
|  * @file
 | |
|  * RTMP protocol based on http://rtmpdump.mplayerhq.hu/ librtmp
 | |
|  */
 | |
| 
 | |
| #include "libavutil/mathematics.h"
 | |
| #include "avformat.h"
 | |
| #include "url.h"
 | |
| 
 | |
| #include <librtmp/rtmp.h>
 | |
| #include <librtmp/log.h>
 | |
| 
 | |
| static void rtmp_log(int level, const char *fmt, va_list args)
 | |
| {
 | |
|     switch (level) {
 | |
|     default:
 | |
|     case RTMP_LOGCRIT:    level = AV_LOG_FATAL;   break;
 | |
|     case RTMP_LOGERROR:   level = AV_LOG_ERROR;   break;
 | |
|     case RTMP_LOGWARNING: level = AV_LOG_WARNING; break;
 | |
|     case RTMP_LOGINFO:    level = AV_LOG_INFO;    break;
 | |
|     case RTMP_LOGDEBUG:   level = AV_LOG_VERBOSE; break;
 | |
|     case RTMP_LOGDEBUG2:  level = AV_LOG_DEBUG;   break;
 | |
|     }
 | |
| 
 | |
|     av_vlog(NULL, level, fmt, args);
 | |
|     av_log(NULL, level, "\n");
 | |
| }
 | |
| 
 | |
| static int rtmp_close(URLContext *s)
 | |
| {
 | |
|     RTMP *r = s->priv_data;
 | |
| 
 | |
|     RTMP_Close(r);
 | |
|     return 0;
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * 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 int rtmp_open(URLContext *s, const char *uri, int flags)
 | |
| {
 | |
|     RTMP *r = s->priv_data;
 | |
|     int rc;
 | |
| 
 | |
|     switch (av_log_get_level()) {
 | |
|     default:
 | |
|     case AV_LOG_FATAL:   rc = RTMP_LOGCRIT;    break;
 | |
|     case AV_LOG_ERROR:   rc = RTMP_LOGERROR;   break;
 | |
|     case AV_LOG_WARNING: rc = RTMP_LOGWARNING; break;
 | |
|     case AV_LOG_INFO:    rc = RTMP_LOGINFO;    break;
 | |
|     case AV_LOG_VERBOSE: rc = RTMP_LOGDEBUG;   break;
 | |
|     case AV_LOG_DEBUG:   rc = RTMP_LOGDEBUG2;  break;
 | |
|     }
 | |
|     RTMP_LogSetLevel(rc);
 | |
|     RTMP_LogSetCallback(rtmp_log);
 | |
| 
 | |
|     RTMP_Init(r);
 | |
|     if (!RTMP_SetupURL(r, s->filename)) {
 | |
|         rc = -1;
 | |
|         goto fail;
 | |
|     }
 | |
| 
 | |
|     if (flags & AVIO_FLAG_WRITE)
 | |
|         RTMP_EnableWrite(r);
 | |
| 
 | |
|     if (!RTMP_Connect(r, NULL) || !RTMP_ConnectStream(r, 0)) {
 | |
|         rc = -1;
 | |
|         goto fail;
 | |
|     }
 | |
| 
 | |
|     s->is_streamed = 1;
 | |
|     return 0;
 | |
| fail:
 | |
|     return rc;
 | |
| }
 | |
| 
 | |
| static int rtmp_write(URLContext *s, const uint8_t *buf, int size)
 | |
| {
 | |
|     RTMP *r = s->priv_data;
 | |
| 
 | |
|     return RTMP_Write(r, buf, size);
 | |
| }
 | |
| 
 | |
| static int rtmp_read(URLContext *s, uint8_t *buf, int size)
 | |
| {
 | |
|     RTMP *r = s->priv_data;
 | |
| 
 | |
|     return RTMP_Read(r, buf, size);
 | |
| }
 | |
| 
 | |
| static int rtmp_read_pause(URLContext *s, int pause)
 | |
| {
 | |
|     RTMP *r = s->priv_data;
 | |
| 
 | |
|     if (!RTMP_Pause(r, pause))
 | |
|         return -1;
 | |
|     return 0;
 | |
| }
 | |
| 
 | |
| static int64_t rtmp_read_seek(URLContext *s, int stream_index,
 | |
|                               int64_t timestamp, int flags)
 | |
| {
 | |
|     RTMP *r = s->priv_data;
 | |
| 
 | |
|     if (flags & AVSEEK_FLAG_BYTE)
 | |
|         return AVERROR(ENOSYS);
 | |
| 
 | |
|     /* seeks are in milliseconds */
 | |
|     if (stream_index < 0)
 | |
|         timestamp = av_rescale_rnd(timestamp, 1000, AV_TIME_BASE,
 | |
|             flags & AVSEEK_FLAG_BACKWARD ? AV_ROUND_DOWN : AV_ROUND_UP);
 | |
| 
 | |
|     if (!RTMP_SendSeek(r, timestamp))
 | |
|         return -1;
 | |
|     return timestamp;
 | |
| }
 | |
| 
 | |
| static int rtmp_get_file_handle(URLContext *s)
 | |
| {
 | |
|     RTMP *r = s->priv_data;
 | |
| 
 | |
|     return RTMP_Socket(r);
 | |
| }
 | |
| 
 | |
| URLProtocol ff_librtmp_protocol = {
 | |
|     .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(RTMP),
 | |
|     .flags               = URL_PROTOCOL_FLAG_NETWORK,
 | |
| };
 | |
| 
 | |
| URLProtocol ff_librtmpt_protocol = {
 | |
|     .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(RTMP),
 | |
|     .flags               = URL_PROTOCOL_FLAG_NETWORK,
 | |
| };
 | |
| 
 | |
| URLProtocol ff_librtmpe_protocol = {
 | |
|     .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(RTMP),
 | |
|     .flags               = URL_PROTOCOL_FLAG_NETWORK,
 | |
| };
 | |
| 
 | |
| URLProtocol ff_librtmpte_protocol = {
 | |
|     .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(RTMP),
 | |
|     .flags               = URL_PROTOCOL_FLAG_NETWORK,
 | |
| };
 | |
| 
 | |
| URLProtocol ff_librtmps_protocol = {
 | |
|     .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(RTMP),
 | |
|     .flags               = URL_PROTOCOL_FLAG_NETWORK,
 | |
| };
 |