2002-07-04 10:38:01 +00:00
|
|
|
/*
|
|
|
|
* RTP input/output format
|
2009-01-19 15:46:40 +00:00
|
|
|
* Copyright (c) 2002 Fabrice Bellard
|
2002-07-04 10:38:01 +00:00
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* This file is part of Libav.
|
2006-10-07 15:30:46 +00:00
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is free software; you can redistribute it and/or
|
2002-07-04 10:38:01 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2006-10-07 15:30:46 +00:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2002-07-04 10:38:01 +00:00
|
|
|
*
|
2011-03-18 17:35:10 +00:00
|
|
|
* Libav is distributed in the hope that it will be useful,
|
2002-07-04 10:38:01 +00:00
|
|
|
* 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
|
2011-03-18 17:35:10 +00:00
|
|
|
* License along with Libav; if not, write to the Free Software
|
2006-01-12 22:43:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2002-07-04 10:38:01 +00:00
|
|
|
*/
|
2008-05-09 11:56:36 +00:00
|
|
|
|
2013-02-01 09:27:45 +00:00
|
|
|
#include "libavutil/opt.h"
|
2002-07-04 10:38:01 +00:00
|
|
|
#include "avformat.h"
|
|
|
|
|
2009-01-27 12:23:16 +00:00
|
|
|
#include "rtp.h"
|
2006-10-26 18:36:03 +00:00
|
|
|
|
2005-05-26 07:47:51 +00:00
|
|
|
/* from http://www.iana.org/assignments/rtp-parameters last updated 05 January 2005 */
|
2008-03-31 09:54:49 +00:00
|
|
|
/* payload types >= 96 are dynamic;
|
|
|
|
* payload types between 72 and 76 are reserved for RTCP conflict avoidance;
|
|
|
|
* all the other payload types not present in the table are unassigned or
|
|
|
|
* reserved
|
|
|
|
*/
|
2013-01-11 12:44:40 +00:00
|
|
|
static const struct {
|
2008-01-06 10:00:04 +00:00
|
|
|
int pt;
|
2008-03-31 09:49:58 +00:00
|
|
|
const char enc_name[6];
|
2010-03-30 23:30:55 +00:00
|
|
|
enum AVMediaType codec_type;
|
2012-08-05 09:11:04 +00:00
|
|
|
enum AVCodecID codec_id;
|
2008-01-06 10:00:04 +00:00
|
|
|
int clock_rate;
|
|
|
|
int audio_channels;
|
2013-01-11 12:46:54 +00:00
|
|
|
} rtp_payload_types[] = {
|
2012-08-05 09:11:04 +00:00
|
|
|
{0, "PCMU", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_PCM_MULAW, 8000, 1},
|
|
|
|
{3, "GSM", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_NONE, 8000, 1},
|
|
|
|
{4, "G723", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_G723_1, 8000, 1},
|
|
|
|
{5, "DVI4", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_NONE, 8000, 1},
|
|
|
|
{6, "DVI4", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_NONE, 16000, 1},
|
|
|
|
{7, "LPC", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_NONE, 8000, 1},
|
|
|
|
{8, "PCMA", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_PCM_ALAW, 8000, 1},
|
|
|
|
{9, "G722", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_ADPCM_G722, 8000, 1},
|
|
|
|
{10, "L16", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_PCM_S16BE, 44100, 2},
|
|
|
|
{11, "L16", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_PCM_S16BE, 44100, 1},
|
|
|
|
{12, "QCELP", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_QCELP, 8000, 1},
|
|
|
|
{13, "CN", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_NONE, 8000, 1},
|
|
|
|
{14, "MPA", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_MP2, -1, -1},
|
|
|
|
{14, "MPA", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_MP3, -1, -1},
|
|
|
|
{15, "G728", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_NONE, 8000, 1},
|
|
|
|
{16, "DVI4", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_NONE, 11025, 1},
|
|
|
|
{17, "DVI4", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_NONE, 22050, 1},
|
|
|
|
{18, "G729", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_NONE, 8000, 1},
|
|
|
|
{25, "CelB", AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_NONE, 90000, -1},
|
|
|
|
{26, "JPEG", AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_MJPEG, 90000, -1},
|
|
|
|
{28, "nv", AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_NONE, 90000, -1},
|
|
|
|
{31, "H261", AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_H261, 90000, -1},
|
|
|
|
{32, "MPV", AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_MPEG1VIDEO, 90000, -1},
|
|
|
|
{32, "MPV", AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_MPEG2VIDEO, 90000, -1},
|
|
|
|
{33, "MP2T", AVMEDIA_TYPE_DATA, AV_CODEC_ID_MPEG2TS, 90000, -1},
|
|
|
|
{34, "H263", AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_H263, 90000, -1},
|
|
|
|
{-1, "", AVMEDIA_TYPE_UNKNOWN, AV_CODEC_ID_NONE, -1, -1}
|
2005-05-26 07:47:51 +00:00
|
|
|
};
|
|
|
|
|
2009-02-17 08:12:51 +00:00
|
|
|
int ff_rtp_get_codec_info(AVCodecContext *codec, int payload_type)
|
2002-07-04 10:38:01 +00:00
|
|
|
{
|
2007-11-16 07:59:41 +00:00
|
|
|
int i = 0;
|
|
|
|
|
2013-01-11 12:46:54 +00:00
|
|
|
for (i = 0; rtp_payload_types[i].pt >= 0; i++)
|
|
|
|
if (rtp_payload_types[i].pt == payload_type) {
|
|
|
|
if (rtp_payload_types[i].codec_id != AV_CODEC_ID_NONE) {
|
|
|
|
codec->codec_type = rtp_payload_types[i].codec_type;
|
|
|
|
codec->codec_id = rtp_payload_types[i].codec_id;
|
|
|
|
if (rtp_payload_types[i].audio_channels > 0)
|
|
|
|
codec->channels = rtp_payload_types[i].audio_channels;
|
|
|
|
if (rtp_payload_types[i].clock_rate > 0)
|
|
|
|
codec->sample_rate = rtp_payload_types[i].clock_rate;
|
2007-11-16 07:59:41 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2005-05-26 07:47:51 +00:00
|
|
|
return -1;
|
2002-07-04 10:38:01 +00:00
|
|
|
}
|
|
|
|
|
2012-11-11 19:44:28 +00:00
|
|
|
int ff_rtp_get_payload_type(AVFormatContext *fmt,
|
|
|
|
AVCodecContext *codec, int idx)
|
2002-07-04 10:38:01 +00:00
|
|
|
{
|
2011-09-26 15:56:49 +00:00
|
|
|
int i;
|
2011-09-26 15:56:48 +00:00
|
|
|
AVOutputFormat *ofmt = fmt ? fmt->oformat : NULL;
|
|
|
|
|
|
|
|
/* Was the payload type already specified for the RTP muxer? */
|
2012-12-20 11:53:27 +00:00
|
|
|
if (ofmt && ofmt->priv_class && fmt->priv_data) {
|
2011-10-03 19:10:06 +00:00
|
|
|
int64_t payload_type;
|
2011-10-17 17:24:54 +00:00
|
|
|
if (av_opt_get_int(fmt->priv_data, "payload_type", 0, &payload_type) >= 0 &&
|
|
|
|
payload_type >= 0)
|
2011-10-03 19:10:06 +00:00
|
|
|
return (int)payload_type;
|
2011-09-26 15:56:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* static payload type */
|
2013-01-11 12:46:54 +00:00
|
|
|
for (i = 0; rtp_payload_types[i].pt >= 0; ++i)
|
|
|
|
if (rtp_payload_types[i].codec_id == codec->codec_id) {
|
2013-01-23 21:21:52 +00:00
|
|
|
if (codec->codec_id == AV_CODEC_ID_H263 && (!fmt || !fmt->oformat ||
|
2013-01-23 19:38:41 +00:00
|
|
|
!fmt->oformat->priv_class || !fmt->priv_data ||
|
2012-02-07 14:39:14 +00:00
|
|
|
!av_opt_flag_is_set(fmt->priv_data, "rtpflags", "rfc2190")))
|
2009-04-07 06:37:12 +00:00
|
|
|
continue;
|
2012-07-17 07:51:13 +00:00
|
|
|
/* G722 has 8000 as nominal rate even if the sample rate is 16000,
|
|
|
|
* see section 4.5.2 in RFC 3551. */
|
2012-08-05 09:11:04 +00:00
|
|
|
if (codec->codec_id == AV_CODEC_ID_ADPCM_G722 &&
|
2012-07-17 07:51:13 +00:00
|
|
|
codec->sample_rate == 16000 && codec->channels == 1)
|
2013-01-11 12:46:54 +00:00
|
|
|
return rtp_payload_types[i].pt;
|
2012-07-17 07:51:13 +00:00
|
|
|
if (codec->codec_type == AVMEDIA_TYPE_AUDIO &&
|
2013-01-11 12:46:54 +00:00
|
|
|
((rtp_payload_types[i].clock_rate > 0 &&
|
|
|
|
codec->sample_rate != rtp_payload_types[i].clock_rate) ||
|
|
|
|
(rtp_payload_types[i].audio_channels > 0 &&
|
|
|
|
codec->channels != rtp_payload_types[i].audio_channels)))
|
2012-07-17 07:51:13 +00:00
|
|
|
continue;
|
2013-01-11 12:46:54 +00:00
|
|
|
return rtp_payload_types[i].pt;
|
2002-07-04 10:38:01 +00:00
|
|
|
}
|
2011-09-23 19:47:56 +00:00
|
|
|
|
2012-11-11 19:44:28 +00:00
|
|
|
if (idx < 0)
|
|
|
|
idx = codec->codec_type == AVMEDIA_TYPE_AUDIO;
|
|
|
|
|
2011-09-23 19:47:56 +00:00
|
|
|
/* dynamic payload type */
|
2012-11-11 19:44:28 +00:00
|
|
|
return RTP_PT_PRIVATE + idx;
|
2002-07-04 10:38:01 +00:00
|
|
|
}
|
|
|
|
|
2007-11-16 07:59:41 +00:00
|
|
|
const char *ff_rtp_enc_name(int payload_type)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2013-01-11 12:46:54 +00:00
|
|
|
for (i = 0; rtp_payload_types[i].pt >= 0; i++)
|
|
|
|
if (rtp_payload_types[i].pt == payload_type)
|
|
|
|
return rtp_payload_types[i].enc_name;
|
2007-11-16 07:59:41 +00:00
|
|
|
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2012-08-05 09:11:04 +00:00
|
|
|
enum AVCodecID ff_rtp_codec_id(const char *buf, enum AVMediaType codec_type)
|
2007-11-16 07:59:41 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2013-01-11 12:46:54 +00:00
|
|
|
for (i = 0; rtp_payload_types[i].pt >= 0; i++)
|
|
|
|
if (!strcmp(buf, rtp_payload_types[i].enc_name) && (codec_type == rtp_payload_types[i].codec_type))
|
|
|
|
return rtp_payload_types[i].codec_id;
|
2007-11-16 07:59:41 +00:00
|
|
|
|
2012-08-05 09:11:04 +00:00
|
|
|
return AV_CODEC_ID_NONE;
|
2007-11-16 07:59:41 +00:00
|
|
|
}
|