]> git.sesse.net Git - ffmpeg/blob - libavformat/rtpdec_h264.c
Merge commit '53367b34e1156614e82ef7af888928f322566f88'
[ffmpeg] / libavformat / rtpdec_h264.c
1 /*
2  * RTP H264 Protocol (RFC3984)
3  * Copyright (c) 2006 Ryan Martell
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 /**
23  * @file
24  * @brief H.264 / RTP Code (RFC3984)
25  * @author Ryan Martell <rdm4@martellventures.com>
26  *
27  * @note Notes:
28  * Notes:
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,
33  *                        FU-B packet types)
34  */
35
36 #include "libavutil/attributes.h"
37 #include "libavutil/base64.h"
38 #include "libavutil/avstring.h"
39 #include "libavcodec/get_bits.h"
40 #include "avformat.h"
41
42 #include "network.h"
43
44 #include "rtpdec.h"
45 #include "rtpdec_formats.h"
46
47 struct PayloadContext {
48     // sdp setup parameters
49     uint8_t profile_idc;
50     uint8_t profile_iop;
51     uint8_t level_idc;
52     int packetization_mode;
53 #ifdef DEBUG
54     int packet_types_received[32];
55 #endif
56 };
57
58 #ifdef DEBUG
59 #define COUNT_NAL_TYPE(data, nal) data->packet_types_received[(nal) & 0x1f]++
60 #else
61 #define COUNT_NAL_TYPE(data, nal) do { } while (0)
62 #endif
63
64 static const uint8_t start_sequence[] = { 0, 0, 0, 1 };
65
66 static void parse_profile_level_id(AVFormatContext *s,
67                                    PayloadContext *h264_data,
68                                    char *value)
69 {
70     char buffer[3];
71     // 6 characters=3 bytes, in hex.
72     uint8_t profile_idc;
73     uint8_t profile_iop;
74     uint8_t level_idc;
75
76     buffer[0]   = value[0];
77     buffer[1]   = value[1];
78     buffer[2]   = '\0';
79     profile_idc = strtol(buffer, NULL, 16);
80     buffer[0]   = value[2];
81     buffer[1]   = value[3];
82     profile_iop = strtol(buffer, NULL, 16);
83     buffer[0]   = value[4];
84     buffer[1]   = value[5];
85     level_idc   = strtol(buffer, NULL, 16);
86
87     av_log(s, AV_LOG_DEBUG,
88            "RTP Profile IDC: %x Profile IOP: %x Level: %x\n",
89            profile_idc, profile_iop, level_idc);
90     h264_data->profile_idc = profile_idc;
91     h264_data->profile_iop = profile_iop;
92     h264_data->level_idc   = level_idc;
93 }
94
95 static int parse_sprop_parameter_sets(AVFormatContext *s,
96                                       AVCodecContext *codec,
97                                       char *value)
98 {
99     char base64packet[1024];
100     uint8_t decoded_packet[1024];
101     int packet_size;
102
103     while (*value) {
104         char *dst = base64packet;
105
106         while (*value && *value != ','
107                && (dst - base64packet) < sizeof(base64packet) - 1) {
108             *dst++ = *value++;
109         }
110         *dst++ = '\0';
111
112         if (*value == ',')
113             value++;
114
115         packet_size = av_base64_decode(decoded_packet, base64packet,
116                                        sizeof(decoded_packet));
117         if (packet_size > 0) {
118             uint8_t *dest = av_malloc(packet_size + sizeof(start_sequence) +
119                                       codec->extradata_size +
120                                       FF_INPUT_BUFFER_PADDING_SIZE);
121             if (!dest) {
122                 av_log(s, AV_LOG_ERROR,
123                        "Unable to allocate memory for extradata!\n");
124                 return AVERROR(ENOMEM);
125             }
126             if (codec->extradata_size) {
127                 memcpy(dest, codec->extradata, codec->extradata_size);
128                 av_free(codec->extradata);
129             }
130
131             memcpy(dest + codec->extradata_size, start_sequence,
132                    sizeof(start_sequence));
133             memcpy(dest + codec->extradata_size + sizeof(start_sequence),
134                    decoded_packet, packet_size);
135             memset(dest + codec->extradata_size + sizeof(start_sequence) +
136                    packet_size, 0, FF_INPUT_BUFFER_PADDING_SIZE);
137
138             codec->extradata       = dest;
139             codec->extradata_size += sizeof(start_sequence) + packet_size;
140         }
141     }
142
143     av_log(s, AV_LOG_DEBUG, "Extradata set to %p (size: %d)\n",
144            codec->extradata, codec->extradata_size);
145
146     return 0;
147 }
148
149 static int sdp_parse_fmtp_config_h264(AVFormatContext *s,
150                                       AVStream *stream,
151                                       PayloadContext *h264_data,
152                                       char *attr, char *value)
153 {
154     AVCodecContext *codec = stream->codec;
155
156     if (!strcmp(attr, "packetization-mode")) {
157         av_log(s, AV_LOG_DEBUG, "RTP Packetization Mode: %d\n", atoi(value));
158         h264_data->packetization_mode = atoi(value);
159         /*
160          * Packetization Mode:
161          * 0 or not present: Single NAL mode (Only nals from 1-23 are allowed)
162          * 1: Non-interleaved Mode: 1-23, 24 (STAP-A), 28 (FU-A) are allowed.
163          * 2: Interleaved Mode: 25 (STAP-B), 26 (MTAP16), 27 (MTAP24), 28 (FU-A),
164          *                      and 29 (FU-B) are allowed.
165          */
166         if (h264_data->packetization_mode > 1)
167             av_log(s, AV_LOG_ERROR,
168                    "Interleaved RTP mode is not supported yet.\n");
169     } else if (!strcmp(attr, "profile-level-id")) {
170         if (strlen(value) == 6)
171             parse_profile_level_id(s, h264_data, value);
172     } else if (!strcmp(attr, "sprop-parameter-sets")) {
173         codec->extradata_size = 0;
174         av_freep(&codec->extradata);
175         return parse_sprop_parameter_sets(s, codec, value);
176     }
177     return 0;
178 }
179
180 static int h264_handle_packet_stap_a(AVFormatContext *ctx, AVPacket *pkt,
181                                      const uint8_t *buf, int len)
182 {
183     int pass         = 0;
184     int total_length = 0;
185     uint8_t *dst     = NULL;
186     int ret;
187
188     for (pass = 0; pass < 2; pass++) {
189         const uint8_t *src = buf;
190         int src_len        = len;
191
192         while (src_len > 2) {
193             uint16_t nal_size = AV_RB16(src);
194
195             // consume the length of the aggregate
196             src     += 2;
197             src_len -= 2;
198
199             if (nal_size <= src_len) {
200                 if (pass == 0) {
201                     // counting
202                     total_length += sizeof(start_sequence) + nal_size;
203                 } else {
204                     // copying
205                     memcpy(dst, start_sequence, sizeof(start_sequence));
206                     dst += sizeof(start_sequence);
207                     memcpy(dst, src, nal_size);
208                     COUNT_NAL_TYPE(data, *src);
209                     dst += nal_size;
210                 }
211             } else {
212                 av_log(ctx, AV_LOG_ERROR,
213                        "nal size exceeds length: %d %d\n", nal_size, src_len);
214             }
215
216             // eat what we handled
217             src     += nal_size;
218             src_len -= nal_size;
219
220             if (src_len < 0)
221                 av_log(ctx, AV_LOG_ERROR,
222                        "Consumed more bytes than we got! (%d)\n", src_len);
223         }
224
225         if (pass == 0) {
226             /* now we know the total size of the packet (with the
227              * start sequences added) */
228             if ((ret = av_new_packet(pkt, total_length)) < 0)
229                 return ret;
230             dst = pkt->data;
231         }
232     }
233
234     return 0;
235 }
236
237 static int h264_handle_packet_fu_a(AVFormatContext *ctx, AVPacket *pkt,
238                                    const uint8_t *buf, int len)
239 {
240     uint8_t fu_indicator, fu_header, start_bit, nal_type, nal;
241     int ret;
242
243     if (len < 3) {
244         av_log(ctx, AV_LOG_ERROR, "Too short data for FU-A H264 RTP packet\n");
245         return AVERROR_INVALIDDATA;
246     }
247
248     fu_indicator = buf[0];
249     fu_header    = buf[1];
250     start_bit    = fu_header >> 7;
251     nal_type     = fu_header & 0x1f;
252     nal          = fu_indicator & 0xe0 | nal_type;
253
254     // skip the fu_indicator and fu_header
255     buf += 2;
256     len -= 2;
257
258     if (start_bit) {
259         COUNT_NAL_TYPE(data, nal_type);
260         /* copy in the start sequence, and the reconstructed nal */
261         if ((ret = av_new_packet(pkt, sizeof(start_sequence) + sizeof(nal) + len)) < 0)
262             return ret;
263         memcpy(pkt->data, start_sequence, sizeof(start_sequence));
264         pkt->data[sizeof(start_sequence)] = nal;
265         memcpy(pkt->data + sizeof(start_sequence) + sizeof(nal), buf, len);
266     } else {
267         if ((ret = av_new_packet(pkt, len)) < 0)
268             return ret;
269         memcpy(pkt->data, buf, len);
270     }
271
272     return 0;
273 }
274
275 // return 0 on packet, no more left, 1 on packet, 1 on partial packet
276 static int h264_handle_packet(AVFormatContext *ctx, PayloadContext *data,
277                               AVStream *st, AVPacket *pkt, uint32_t *timestamp,
278                               const uint8_t *buf, int len, uint16_t seq,
279                               int flags)
280 {
281     uint8_t nal;
282     uint8_t type;
283     int result = 0;
284
285     if (!len) {
286         av_log(ctx, AV_LOG_ERROR, "Empty H264 RTP packet\n");
287         return AVERROR_INVALIDDATA;
288     }
289     nal  = buf[0];
290     type = nal & 0x1f;
291
292     /* Simplify the case (these are all the nal types used internally by
293      * the h264 codec). */
294     if (type >= 1 && type <= 23)
295         type = 1;
296     switch (type) {
297     case 0:                    // undefined, but pass them through
298     case 1:
299         if ((result = av_new_packet(pkt, len + sizeof(start_sequence))) < 0)
300             return result;
301         memcpy(pkt->data, start_sequence, sizeof(start_sequence));
302         memcpy(pkt->data + sizeof(start_sequence), buf, len);
303         COUNT_NAL_TYPE(data, nal);
304         break;
305
306     case 24:                   // STAP-A (one packet, multiple nals)
307         // consume the STAP-A NAL
308         buf++;
309         len--;
310         // first we are going to figure out the total size
311         result = h264_handle_packet_stap_a(ctx, pkt, buf, len);
312         break;
313
314     case 25:                   // STAP-B
315     case 26:                   // MTAP-16
316     case 27:                   // MTAP-24
317     case 29:                   // FU-B
318         av_log(ctx, AV_LOG_ERROR,
319                "Unhandled type (%d) (See RFC for implementation details\n",
320                type);
321         result = AVERROR(ENOSYS);
322         break;
323
324     case 28:                   // FU-A (fragmented nal)
325         result = h264_handle_packet_fu_a(ctx, pkt, buf, len);
326         break;
327
328     case 30:                   // undefined
329     case 31:                   // undefined
330     default:
331         av_log(ctx, AV_LOG_ERROR, "Undefined type (%d)\n", type);
332         result = AVERROR_INVALIDDATA;
333         break;
334     }
335
336     pkt->stream_index = st->index;
337
338     return result;
339 }
340
341 static PayloadContext *h264_new_context(void)
342 {
343     return av_mallocz(sizeof(PayloadContext) + FF_INPUT_BUFFER_PADDING_SIZE);
344 }
345
346 static void h264_free_context(PayloadContext *data)
347 {
348 #ifdef DEBUG
349     int ii;
350
351     for (ii = 0; ii < 32; ii++) {
352         if (data->packet_types_received[ii])
353             av_log(NULL, AV_LOG_DEBUG, "Received %d packets of type %d\n",
354                    data->packet_types_received[ii], ii);
355     }
356 #endif
357
358     av_free(data);
359 }
360
361 static av_cold int h264_init(AVFormatContext *s, int st_index,
362                              PayloadContext *data)
363 {
364     if (st_index < 0)
365         return 0;
366     s->streams[st_index]->need_parsing = AVSTREAM_PARSE_FULL;
367     return 0;
368 }
369
370 static int parse_h264_sdp_line(AVFormatContext *s, int st_index,
371                                PayloadContext *h264_data, const char *line)
372 {
373     AVStream *stream;
374     AVCodecContext *codec;
375     const char *p = line;
376
377     if (st_index < 0)
378         return 0;
379
380     stream = s->streams[st_index];
381     codec  = stream->codec;
382
383     if (av_strstart(p, "framesize:", &p)) {
384         char buf1[50];
385         char *dst = buf1;
386
387         // remove the protocol identifier
388         while (*p && *p == ' ')
389             p++;                     // strip spaces.
390         while (*p && *p != ' ')
391             p++;                     // eat protocol identifier
392         while (*p && *p == ' ')
393             p++;                     // strip trailing spaces.
394         while (*p && *p != '-' && (dst - buf1) < sizeof(buf1) - 1)
395             *dst++ = *p++;
396         *dst = '\0';
397
398         // a='framesize:96 320-240'
399         // set our parameters
400         codec->width   = atoi(buf1);
401         codec->height  = atoi(p + 1); // skip the -
402     } else if (av_strstart(p, "fmtp:", &p)) {
403         return ff_parse_fmtp(s, stream, h264_data, p, sdp_parse_fmtp_config_h264);
404     } else if (av_strstart(p, "cliprect:", &p)) {
405         // could use this if we wanted.
406     }
407
408     return 0;
409 }
410
411 RTPDynamicProtocolHandler ff_h264_dynamic_handler = {
412     .enc_name         = "H264",
413     .codec_type       = AVMEDIA_TYPE_VIDEO,
414     .codec_id         = AV_CODEC_ID_H264,
415     .init             = h264_init,
416     .parse_sdp_a_line = parse_h264_sdp_line,
417     .alloc            = h264_new_context,
418     .free             = h264_free_context,
419     .parse_packet     = h264_handle_packet
420 };