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