2 * RTP H264 Protocol (RFC3984)
3 * Copyright (c) 2006 Ryan Martell
5 * This file is part of FFmpeg.
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.
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.
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
24 * @brief H.264 / RTP Code (RFC3984)
25 * @author Ryan Martell <rdm4@martellventures.com>
29 * This currently supports packetization mode:
30 * Single Nal Unit Mode (0), or
31 * Non-Interleaved Mode (1). It currently does not support
32 * Interleaved Mode (2). (This requires implementing STAP-B, MTAP16, MTAP24,
36 #include "libavutil/attributes.h"
37 #include "libavutil/base64.h"
38 #include "libavutil/intreadwrite.h"
39 #include "libavutil/avstring.h"
43 #include "rtpdec_formats.h"
45 struct PayloadContext {
46 // sdp setup parameters
50 int packetization_mode;
52 int packet_types_received[32];
57 #define COUNT_NAL_TYPE(data, nal) data->packet_types_received[(nal) & 0x1f]++
58 #define NAL_COUNTERS data->packet_types_received
60 #define COUNT_NAL_TYPE(data, nal) do { } while (0)
61 #define NAL_COUNTERS NULL
65 static const uint8_t start_sequence[] = { 0, 0, 0, 1 };
67 static void parse_profile_level_id(AVFormatContext *s,
68 PayloadContext *h264_data,
72 // 6 characters=3 bytes, in hex.
80 profile_idc = strtol(buffer, NULL, 16);
83 profile_iop = strtol(buffer, NULL, 16);
86 level_idc = strtol(buffer, NULL, 16);
88 av_log(s, AV_LOG_DEBUG,
89 "RTP Profile IDC: %x Profile IOP: %x Level: %x\n",
90 profile_idc, profile_iop, level_idc);
91 h264_data->profile_idc = profile_idc;
92 h264_data->profile_iop = profile_iop;
93 h264_data->level_idc = level_idc;
96 int ff_h264_parse_sprop_parameter_sets(AVFormatContext *s,
97 uint8_t **data_ptr, int *size_ptr,
100 char base64packet[1024];
101 uint8_t decoded_packet[1024];
105 char *dst = base64packet;
107 while (*value && *value != ','
108 && (dst - base64packet) < sizeof(base64packet) - 1) {
116 packet_size = av_base64_decode(decoded_packet, base64packet,
117 sizeof(decoded_packet));
118 if (packet_size > 0) {
119 uint8_t *dest = av_realloc(*data_ptr,
120 packet_size + sizeof(start_sequence) +
122 FF_INPUT_BUFFER_PADDING_SIZE);
124 av_log(s, AV_LOG_ERROR,
125 "Unable to allocate memory for extradata!\n");
126 return AVERROR(ENOMEM);
130 memcpy(dest + *size_ptr, start_sequence,
131 sizeof(start_sequence));
132 memcpy(dest + *size_ptr + sizeof(start_sequence),
133 decoded_packet, packet_size);
134 memset(dest + *size_ptr + sizeof(start_sequence) +
135 packet_size, 0, FF_INPUT_BUFFER_PADDING_SIZE);
137 *size_ptr += sizeof(start_sequence) + packet_size;
144 static int sdp_parse_fmtp_config_h264(AVFormatContext *s,
146 PayloadContext *h264_data,
147 const char *attr, const char *value)
149 AVCodecContext *codec = stream->codec;
151 if (!strcmp(attr, "packetization-mode")) {
152 av_log(s, AV_LOG_DEBUG, "RTP Packetization Mode: %d\n", atoi(value));
153 h264_data->packetization_mode = atoi(value);
155 * Packetization Mode:
156 * 0 or not present: Single NAL mode (Only nals from 1-23 are allowed)
157 * 1: Non-interleaved Mode: 1-23, 24 (STAP-A), 28 (FU-A) are allowed.
158 * 2: Interleaved Mode: 25 (STAP-B), 26 (MTAP16), 27 (MTAP24), 28 (FU-A),
159 * and 29 (FU-B) are allowed.
161 if (h264_data->packetization_mode > 1)
162 av_log(s, AV_LOG_ERROR,
163 "Interleaved RTP mode is not supported yet.\n");
164 } else if (!strcmp(attr, "profile-level-id")) {
165 if (strlen(value) == 6)
166 parse_profile_level_id(s, h264_data, value);
167 } else if (!strcmp(attr, "sprop-parameter-sets")) {
169 codec->extradata_size = 0;
170 av_freep(&codec->extradata);
171 ret = ff_h264_parse_sprop_parameter_sets(s, &codec->extradata,
172 &codec->extradata_size, value);
173 av_log(s, AV_LOG_DEBUG, "Extradata set to %p (size: %d)\n",
174 codec->extradata, codec->extradata_size);
180 void ff_h264_parse_framesize(AVCodecContext *codec, const char *p)
185 // remove the protocol identifier
186 while (*p && *p == ' ')
187 p++; // strip spaces.
188 while (*p && *p != ' ')
189 p++; // eat protocol identifier
190 while (*p && *p == ' ')
191 p++; // strip trailing spaces.
192 while (*p && *p != '-' && (dst - buf1) < sizeof(buf1) - 1)
196 // a='framesize:96 320-240'
197 // set our parameters
198 codec->width = atoi(buf1);
199 codec->height = atoi(p + 1); // skip the -
202 int ff_h264_handle_aggregated_packet(AVFormatContext *ctx, PayloadContext *data, AVPacket *pkt,
203 const uint8_t *buf, int len,
204 int skip_between, int *nal_counters,
208 int total_length = 0;
212 // first we are going to figure out the total size
213 for (pass = 0; pass < 2; pass++) {
214 const uint8_t *src = buf;
217 while (src_len > 2) {
218 uint16_t nal_size = AV_RB16(src);
220 // consume the length of the aggregate
224 if (nal_size <= src_len) {
227 total_length += sizeof(start_sequence) + nal_size;
230 memcpy(dst, start_sequence, sizeof(start_sequence));
231 dst += sizeof(start_sequence);
232 memcpy(dst, src, nal_size);
234 nal_counters[(*src) & nal_mask]++;
238 av_log(ctx, AV_LOG_ERROR,
239 "nal size exceeds length: %d %d\n", nal_size, src_len);
240 return AVERROR_INVALIDDATA;
243 // eat what we handled
244 src += nal_size + skip_between;
245 src_len -= nal_size + skip_between;
249 /* now we know the total size of the packet (with the
250 * start sequences added) */
251 if ((ret = av_new_packet(pkt, total_length)) < 0)
260 int ff_h264_handle_frag_packet(AVPacket *pkt, const uint8_t *buf, int len,
261 int start_bit, const uint8_t *nal_header,
268 tot_len += sizeof(start_sequence) + nal_header_len;
269 if ((ret = av_new_packet(pkt, tot_len)) < 0)
272 memcpy(pkt->data + pos, start_sequence, sizeof(start_sequence));
273 pos += sizeof(start_sequence);
274 memcpy(pkt->data + pos, nal_header, nal_header_len);
275 pos += nal_header_len;
277 memcpy(pkt->data + pos, buf, len);
281 static int h264_handle_packet_fu_a(AVFormatContext *ctx, PayloadContext *data, AVPacket *pkt,
282 const uint8_t *buf, int len,
283 int *nal_counters, int nal_mask)
285 uint8_t fu_indicator, fu_header, start_bit, nal_type, nal;
288 av_log(ctx, AV_LOG_ERROR, "Too short data for FU-A H264 RTP packet\n");
289 return AVERROR_INVALIDDATA;
292 fu_indicator = buf[0];
294 start_bit = fu_header >> 7;
295 nal_type = fu_header & 0x1f;
296 nal = fu_indicator & 0xe0 | nal_type;
298 // skip the fu_indicator and fu_header
302 if (start_bit && nal_counters)
303 nal_counters[nal_type & nal_mask]++;
304 return ff_h264_handle_frag_packet(pkt, buf, len, start_bit, &nal, 1);
307 // return 0 on packet, no more left, 1 on packet, 1 on partial packet
308 static int h264_handle_packet(AVFormatContext *ctx, PayloadContext *data,
309 AVStream *st, AVPacket *pkt, uint32_t *timestamp,
310 const uint8_t *buf, int len, uint16_t seq,
318 av_log(ctx, AV_LOG_ERROR, "Empty H264 RTP packet\n");
319 return AVERROR_INVALIDDATA;
324 /* Simplify the case (these are all the nal types used internally by
325 * the h264 codec). */
326 if (type >= 1 && type <= 23)
329 case 0: // undefined, but pass them through
331 if ((result = av_new_packet(pkt, len + sizeof(start_sequence))) < 0)
333 memcpy(pkt->data, start_sequence, sizeof(start_sequence));
334 memcpy(pkt->data + sizeof(start_sequence), buf, len);
335 COUNT_NAL_TYPE(data, nal);
338 case 24: // STAP-A (one packet, multiple nals)
339 // consume the STAP-A NAL
342 result = ff_h264_handle_aggregated_packet(ctx, data, pkt, buf, len, 0,
343 NAL_COUNTERS, NAL_MASK);
350 av_log(ctx, AV_LOG_ERROR,
351 "Unhandled type (%d) (See RFC for implementation details)\n",
353 result = AVERROR(ENOSYS);
356 case 28: // FU-A (fragmented nal)
357 result = h264_handle_packet_fu_a(ctx, data, pkt, buf, len,
358 NAL_COUNTERS, NAL_MASK);
361 case 30: // undefined
362 case 31: // undefined
364 av_log(ctx, AV_LOG_ERROR, "Undefined type (%d)\n", type);
365 result = AVERROR_INVALIDDATA;
369 pkt->stream_index = st->index;
374 static void h264_close_context(PayloadContext *data)
379 for (ii = 0; ii < 32; ii++) {
380 if (data->packet_types_received[ii])
381 av_log(NULL, AV_LOG_DEBUG, "Received %d packets of type %d\n",
382 data->packet_types_received[ii], ii);
387 static int parse_h264_sdp_line(AVFormatContext *s, int st_index,
388 PayloadContext *h264_data, const char *line)
391 const char *p = line;
396 stream = s->streams[st_index];
398 if (av_strstart(p, "framesize:", &p)) {
399 ff_h264_parse_framesize(stream->codec, p);
400 } else if (av_strstart(p, "fmtp:", &p)) {
401 return ff_parse_fmtp(s, stream, h264_data, p, sdp_parse_fmtp_config_h264);
402 } else if (av_strstart(p, "cliprect:", &p)) {
403 // could use this if we wanted.
409 RTPDynamicProtocolHandler ff_h264_dynamic_handler = {
411 .codec_type = AVMEDIA_TYPE_VIDEO,
412 .codec_id = AV_CODEC_ID_H264,
413 .need_parsing = AVSTREAM_PARSE_FULL,
414 .priv_data_size = sizeof(PayloadContext),
415 .parse_sdp_a_line = parse_h264_sdp_line,
416 .close = h264_close_context,
417 .parse_packet = h264_handle_packet,