FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
rtp.c
Go to the documentation of this file.
1 /*
2  * RTP input/output format
3  * Copyright (c) 2002 Fabrice Bellard
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
22 #include "libavutil/avstring.h"
23 #include "libavutil/opt.h"
24 #include "avformat.h"
25 
26 #include "rtp.h"
27 
28 /* from http://www.iana.org/assignments/rtp-parameters last updated 05 January 2005 */
29 /* payload types >= 96 are dynamic;
30  * payload types between 72 and 76 are reserved for RTCP conflict avoidance;
31  * all the other payload types not present in the table are unassigned or
32  * reserved
33  */
34 static const struct {
35  int pt;
36  const char enc_name[6];
41 } rtp_payload_types[] = {
42  {0, "PCMU", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_PCM_MULAW, 8000, 1},
43  {3, "GSM", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_NONE, 8000, 1},
44  {4, "G723", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_G723_1, 8000, 1},
45  {5, "DVI4", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_NONE, 8000, 1},
46  {6, "DVI4", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_NONE, 16000, 1},
47  {7, "LPC", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_NONE, 8000, 1},
48  {8, "PCMA", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_PCM_ALAW, 8000, 1},
49  {9, "G722", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_ADPCM_G722, 8000, 1},
50  {10, "L16", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_PCM_S16BE, 44100, 2},
51  {11, "L16", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_PCM_S16BE, 44100, 1},
52  {12, "QCELP", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_QCELP, 8000, 1},
53  {13, "CN", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_NONE, 8000, 1},
54  {14, "MPA", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_MP2, -1, -1},
55  {14, "MPA", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_MP3, -1, -1},
56  {15, "G728", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_NONE, 8000, 1},
57  {16, "DVI4", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_NONE, 11025, 1},
58  {17, "DVI4", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_NONE, 22050, 1},
59  {18, "G729", AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_NONE, 8000, 1},
60  {25, "CelB", AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_NONE, 90000, -1},
61  {26, "JPEG", AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_MJPEG, 90000, -1},
62  {28, "nv", AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_NONE, 90000, -1},
63  {31, "H261", AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_H261, 90000, -1},
64  {32, "MPV", AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_MPEG1VIDEO, 90000, -1},
65  {32, "MPV", AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_MPEG2VIDEO, 90000, -1},
66  {33, "MP2T", AVMEDIA_TYPE_DATA, AV_CODEC_ID_MPEG2TS, 90000, -1},
67  {34, "H263", AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_H263, 90000, -1},
68  {-1, "", AVMEDIA_TYPE_UNKNOWN, AV_CODEC_ID_NONE, -1, -1}
69 };
70 
71 int ff_rtp_get_codec_info(AVCodecContext *codec, int payload_type)
72 {
73  int i = 0;
74 
75  for (i = 0; rtp_payload_types[i].pt >= 0; i++)
76  if (rtp_payload_types[i].pt == payload_type) {
78  codec->codec_type = rtp_payload_types[i].codec_type;
79  codec->codec_id = rtp_payload_types[i].codec_id;
81  codec->channels = rtp_payload_types[i].audio_channels;
82  if (rtp_payload_types[i].clock_rate > 0)
83  codec->sample_rate = rtp_payload_types[i].clock_rate;
84  return 0;
85  }
86  }
87  return -1;
88 }
89 
91  AVCodecContext *codec, int idx)
92 {
93  int i;
94  AVOutputFormat *ofmt = fmt ? fmt->oformat : NULL;
95 
96  /* Was the payload type already specified for the RTP muxer? */
97  if (ofmt && ofmt->priv_class && fmt->priv_data) {
98  int64_t payload_type;
99  if (av_opt_get_int(fmt->priv_data, "payload_type", 0, &payload_type) >= 0 &&
100  payload_type >= 0)
101  return (int)payload_type;
102  }
103 
104  /* static payload type */
105  for (i = 0; rtp_payload_types[i].pt >= 0; ++i)
106  if (rtp_payload_types[i].codec_id == codec->codec_id) {
107  if (codec->codec_id == AV_CODEC_ID_H263 && (!fmt || !fmt->oformat ||
108  !fmt->oformat->priv_class || !fmt->priv_data ||
109  !av_opt_flag_is_set(fmt->priv_data, "rtpflags", "rfc2190")))
110  continue;
111  /* G722 has 8000 as nominal rate even if the sample rate is 16000,
112  * see section 4.5.2 in RFC 3551. */
113  if (codec->codec_id == AV_CODEC_ID_ADPCM_G722 &&
114  codec->sample_rate == 16000 && codec->channels == 1)
115  return rtp_payload_types[i].pt;
116  if (codec->codec_type == AVMEDIA_TYPE_AUDIO &&
117  ((rtp_payload_types[i].clock_rate > 0 &&
118  codec->sample_rate != rtp_payload_types[i].clock_rate) ||
119  (rtp_payload_types[i].audio_channels > 0 &&
120  codec->channels != rtp_payload_types[i].audio_channels)))
121  continue;
122  return rtp_payload_types[i].pt;
123  }
124 
125  if (idx < 0)
126  idx = codec->codec_type == AVMEDIA_TYPE_AUDIO;
127 
128  /* dynamic payload type */
129  return RTP_PT_PRIVATE + idx;
130 }
131 
132 const char *ff_rtp_enc_name(int payload_type)
133 {
134  int i;
135 
136  for (i = 0; rtp_payload_types[i].pt >= 0; i++)
137  if (rtp_payload_types[i].pt == payload_type)
138  return rtp_payload_types[i].enc_name;
139 
140  return "";
141 }
142 
144 {
145  int i;
146 
147  for (i = 0; rtp_payload_types[i].pt >= 0; i++)
148  if (!av_strcasecmp(buf, rtp_payload_types[i].enc_name) && (codec_type == rtp_payload_types[i].codec_type))
149  return rtp_payload_types[i].codec_id;
150 
151  return AV_CODEC_ID_NONE;
152 }
#define NULL
Definition: coverity.c:32
int audio_channels
Definition: rtp.c:40
const char * fmt
Definition: avisynth_c.h:632
enum AVMediaType codec_type
Definition: rtp.c:37
const char * ff_rtp_enc_name(int payload_type)
Return the encoding name (as defined in http://www.iana.org/assignments/rtp-parameters) for a given p...
Definition: rtp.c:132
int clock_rate
Definition: rtp.c:39
Format I/O context.
Definition: avformat.h:1314
#define RTP_PT_PRIVATE
Definition: rtp.h:77
enum AVCodecID ff_rtp_codec_id(const char *buf, enum AVMediaType codec_type)
Return the codec id for the given encoding name and codec type.
Definition: rtp.c:143
Opaque data information usually continuous.
Definition: avutil.h:195
AVOptions.
const char enc_name[6]
Definition: rtp.c:36
int pt
Definition: rtp.c:35
static const struct @187 rtp_payload_types[]
struct AVOutputFormat * oformat
The output container format.
Definition: avformat.h:1333
int ff_rtp_get_payload_type(AVFormatContext *fmt, AVCodecContext *codec, int idx)
Return the payload type for a given stream used in the given format context.
Definition: rtp.c:90
AVCodecID
Identify the syntax and semantics of the bitstream.
Definition: avcodec.h:101
preferred ID for decoding MPEG audio layer 1, 2 or 3
Definition: avcodec.h:420
enum AVCodecID codec_id
Definition: rtp.c:38
int ff_rtp_get_codec_info(AVCodecContext *codec, int payload_type)
Initialize a codec context based on the payload type.
Definition: rtp.c:71
int av_strcasecmp(const char *a, const char *b)
Locale-independent case-insensitive compare.
Definition: avstring.c:213
Usually treated as AVMEDIA_TYPE_DATA.
Definition: avutil.h:192
const AVClass * priv_class
AVClass for the private context.
Definition: avformat.h:551
preferred ID for MPEG-1/2 video decoding
Definition: avcodec.h:106
int av_opt_get_int(void *obj, const char *name, int search_flags, int64_t *out_val)
Definition: opt.c:784
enum AVMediaType codec_type
Definition: avcodec.h:1540
enum AVCodecID codec_id
Definition: avcodec.h:1549
int sample_rate
samples per second
Definition: avcodec.h:2287
main external API structure.
Definition: avcodec.h:1532
void * buf
Definition: avisynth_c.h:553
AVMediaType
Definition: avutil.h:191
Main libavformat public API header.
FAKE codec to indicate a raw MPEG-2 TS stream (only used by libavformat)
Definition: avcodec.h:548
int channels
number of audio channels
Definition: avcodec.h:2288
void * priv_data
Format private data.
Definition: avformat.h:1342
int av_opt_flag_is_set(void *obj, const char *field_name, const char *flag_name)
Check whether a particular flag is set in a flags field.
Definition: opt.c:920