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, FU-B packet types)
35 * 1) RTCP sender reports for udp streams are required..
41 #include "bitstream.h"
47 #include "rtp_internal.h"
52 RTP/H264 specific private data.
54 typedef struct h264_rtp_extra_data {
55 unsigned long cookie; ///< sanity check, to make sure we get the pointer we're expecting.
57 //sdp setup parameters
58 uint8_t profile_idc; ///< from the sdp setup parameters.
59 uint8_t profile_iop; ///< from the sdp setup parameters.
60 uint8_t level_idc; ///< from the sdp setup parameters.
61 int packetization_mode; ///< from the sdp setup parameters.
63 int packet_types_received[32];
65 } h264_rtp_extra_data;
67 #define MAGIC_COOKIE (0xdeadbeef) ///< Cookie for the extradata; to verify we are what we think we are, and that we haven't been freed.
68 #define DEAD_COOKIE (0xdeaddead) ///< Cookie for the extradata; once it is freed.
70 /* ---------------- private code */
71 static void sdp_parse_fmtp_config_h264(AVStream * stream,
72 h264_rtp_extra_data * h264_data,
73 char *attr, char *value)
75 AVCodecContext *codec = stream->codec;
76 assert(codec->codec_id == CODEC_ID_H264);
77 assert(h264_data != NULL);
79 if (!strcmp(attr, "packetization-mode")) {
80 av_log(NULL, AV_LOG_DEBUG, "H.264/RTP Packetization Mode: %d\n", atoi(attr));
81 h264_data->packetization_mode = atoi(attr);
84 0 or not present: Single NAL mode (Only nals from 1-23 are allowed)
85 1: Non-interleaved Mode: 1-23, 24 (STAP-A), 28 (FU-A) are allowed.
86 2: Interleaved Mode: 25 (STAP-B), 26 (MTAP16), 27 (MTAP24), 28 (FU-A), and 29 (FU-B) are allowed.
88 if (h264_data->packetization_mode > 1)
89 av_log(stream, AV_LOG_ERROR,
90 "H.264/RTP Interleaved RTP mode is not supported yet.");
91 } else if (!strcmp(attr, "profile-level-id")) {
92 if (strlen(value) == 6) {
94 // 6 characters=3 bytes, in hex.
99 buffer[0] = value[0]; buffer[1] = value[1]; buffer[2] = '\0';
100 profile_idc = strtol(buffer, NULL, 16);
101 buffer[0] = value[2]; buffer[1] = value[3];
102 profile_iop = strtol(buffer, NULL, 16);
103 buffer[0] = value[4]; buffer[1] = value[5];
104 level_idc = strtol(buffer, NULL, 16);
106 // set the parameters...
107 av_log(NULL, AV_LOG_DEBUG,
108 "H.264/RTP Profile IDC: %x Profile IOP: %x Level: %x\n",
109 profile_idc, profile_iop, level_idc);
110 h264_data->profile_idc = profile_idc;
111 h264_data->profile_iop = profile_iop;
112 h264_data->level_idc = level_idc;
114 } else if (!strcmp(attr, "sprop-parameter-sets")) {
115 uint8_t start_sequence[]= { 0, 0, 1 };
116 codec->extradata_size= 0;
117 codec->extradata= NULL;
120 char base64packet[1024];
121 uint8_t decoded_packet[1024];
122 uint32_t packet_size;
123 char *dst = base64packet;
125 while (*value && *value != ','
126 && (dst - base64packet) < sizeof(base64packet) - 1) {
134 packet_size= av_base64_decode(decoded_packet, base64packet, sizeof(decoded_packet));
136 uint8_t *dest= av_malloc(packet_size+sizeof(start_sequence)+codec->extradata_size);
139 if(codec->extradata_size)
142 memcpy(dest, codec->extradata, codec->extradata_size);
143 av_free(codec->extradata);
146 memcpy(dest+codec->extradata_size, start_sequence, sizeof(start_sequence));
147 memcpy(dest+codec->extradata_size+sizeof(start_sequence), decoded_packet, packet_size);
149 codec->extradata= dest;
150 codec->extradata_size+= sizeof(start_sequence)+packet_size;
152 av_log(NULL, AV_LOG_ERROR, "H.264/RTP Unable to allocate memory for extradata!");
156 av_log(NULL, AV_LOG_DEBUG, "H.264/RTP Extradata set to %p (size: %d)!", codec->extradata, codec->extradata_size);
160 // return 0 on packet, no more left, 1 on packet, 1 on partial packet...
161 static int h264_handle_packet(RTPDemuxContext * s,
163 uint32_t * timestamp,
168 h264_rtp_extra_data *data = s->dynamic_protocol_context;
170 uint8_t nal = buf[0];
171 uint8_t type = (nal & 0x1f);
173 uint8_t start_sequence[]= {0, 0, 1};
176 assert(data->cookie == MAGIC_COOKIE);
179 if (type >= 1 && type <= 23)
180 type = 1; // simplify the case. (these are all the nal types used internally by the h264 codec)
182 case 0: // undefined;
187 av_new_packet(pkt, len+sizeof(start_sequence));
188 memcpy(pkt->data, start_sequence, sizeof(start_sequence));
189 memcpy(pkt->data+sizeof(start_sequence), buf, len);
191 data->packet_types_received[nal & 0x1f]++;
195 case 24: // STAP-A (one packet, multiple nals)
196 // consume the STAP-A NAL
199 // first we are going to figure out the total size....
205 for(pass= 0; pass<2; pass++) {
206 const uint8_t *src= buf;
210 uint16_t nal_size = AV_RB16(src); // this going to be a problem if unaligned (can it be?)
212 // consume the length of the aggregate...
216 if (nal_size <= src_len) {
219 total_length+= sizeof(start_sequence)+nal_size;
223 memcpy(dst, start_sequence, sizeof(start_sequence));
224 dst+= sizeof(start_sequence);
225 memcpy(dst, src, nal_size);
227 data->packet_types_received[*src & 0x1f]++;
232 av_log(NULL, AV_LOG_ERROR,
233 "nal size exceeds length: %d %d\n", nal_size, src_len);
236 // eat what we handled...
241 av_log(NULL, AV_LOG_ERROR,
242 "Consumed more bytes than we got! (%d)\n", src_len);
243 } while (src_len > 2); // because there could be rtp padding..
246 // now we know the total size of the packet (with the start sequences added)
247 av_new_packet(pkt, total_length);
250 assert(dst-pkt->data==total_length);
260 av_log(NULL, AV_LOG_ERROR,
261 "Unhandled type (%d) (See RFC for implementation details\n",
266 case 28: // FU-A (fragmented nal)
268 len--; // skip the fu_indicator
270 // these are the same as above, we just redo them here for clarity...
271 uint8_t fu_indicator = nal;
272 uint8_t fu_header = *buf; // read the fu_header.
273 uint8_t start_bit = (fu_header & 0x80) >> 7;
274 // uint8_t end_bit = (fu_header & 0x40) >> 6;
275 uint8_t nal_type = (fu_header & 0x1f);
276 uint8_t reconstructed_nal;
278 // reconstruct this packet's true nal; only the data follows..
279 reconstructed_nal = fu_indicator & (0xe0); // the original nal forbidden bit and NRI are stored in this packet's nal;
280 reconstructed_nal |= (nal_type & 0x1f);
282 // skip the fu_header...
288 data->packet_types_received[nal_type & 0x1f]++;
291 // copy in the start sequence, and the reconstructed nal....
292 av_new_packet(pkt, sizeof(start_sequence)+sizeof(nal)+len);
293 memcpy(pkt->data, start_sequence, sizeof(start_sequence));
294 pkt->data[sizeof(start_sequence)]= reconstructed_nal;
295 memcpy(pkt->data+sizeof(start_sequence)+sizeof(nal), buf, len);
297 av_new_packet(pkt, len);
298 memcpy(pkt->data, buf, len);
303 case 30: // undefined
304 case 31: // undefined
306 av_log(NULL, AV_LOG_ERROR, "Undefined type (%d)", type);
314 /* ---------------- public code */
315 static void *h264_new_extradata(void)
317 h264_rtp_extra_data *data =
318 av_mallocz(sizeof(h264_rtp_extra_data) +
319 FF_INPUT_BUFFER_PADDING_SIZE);
322 data->cookie = MAGIC_COOKIE;
328 static void h264_free_extradata(void *d)
330 h264_rtp_extra_data *data = (h264_rtp_extra_data *) d;
334 for (ii = 0; ii < 32; ii++) {
335 if (data->packet_types_received[ii])
336 av_log(NULL, AV_LOG_DEBUG, "Received %d packets of type %d\n",
337 data->packet_types_received[ii], ii);
342 assert(data->cookie == MAGIC_COOKIE);
344 // avoid stale pointers (assert)
345 data->cookie = DEAD_COOKIE;
347 // and clear out this...
351 static int parse_h264_sdp_line(AVStream * stream, void *data,
354 AVCodecContext *codec = stream->codec;
355 h264_rtp_extra_data *h264_data = (h264_rtp_extra_data *) data;
356 const char *p = line;
358 assert(h264_data->cookie == MAGIC_COOKIE);
360 if (strstart(p, "framesize:", &p)) {
364 // remove the protocol identifier..
365 while (*p && *p == ' ') p++; // strip spaces.
366 while (*p && *p != ' ') p++; // eat protocol identifier
367 while (*p && *p == ' ') p++; // strip trailing spaces.
368 while (*p && *p != '-' && (buf1 - dst) < sizeof(buf1) - 1) {
373 // a='framesize:96 320-240'
374 // set our parameters..
375 codec->width = atoi(buf1);
376 codec->height = atoi(p + 1); // skip the -
377 codec->pix_fmt = PIX_FMT_YUV420P;
378 } else if (strstart(p, "fmtp:", &p)) {
382 // remove the protocol identifier..
383 while (*p && *p == ' ') p++; // strip spaces.
384 while (*p && *p != ' ') p++; // eat protocol identifier
385 while (*p && *p == ' ') p++; // strip trailing spaces.
387 /* loop on each attribute */
388 while (rtsp_next_attr_and_value
389 (&p, attr, sizeof(attr), value, sizeof(value))) {
390 /* grab the codec extra_data from the config parameter of the fmtp line */
391 sdp_parse_fmtp_config_h264(stream, h264_data, attr, value);
393 } else if (strstart(p, "cliprect:", &p)) {
394 // could use this if we wanted.
397 av_set_pts_info(stream, 33, 1, 90000); // 33 should be right, because the pts is 64 bit? (done elsewhere; this is a one time thing)
399 return 0; // keep processing it the normal way...
403 This is the structure for expanding on the dynamic rtp protocols (makes everything static. yay!)
405 RTPDynamicProtocolHandler ff_h264_dynamic_handler = {