OSDN Git Service

rtpdec: Add const to string parameters in internal fmtp parsing functions
[android-x86/external-ffmpeg.git] / libavformat / rtpdec_mpeg4.c
1 /*
2  * Common code for the RTP depacketization of MPEG-4 formats.
3  * Copyright (c) 2010 Fabrice Bellard
4  *                    Romain Degez
5  *
6  * This file is part of Libav.
7  *
8  * Libav is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * Libav is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with Libav; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22
23 /**
24  * @file
25  * @brief MPEG4 / RTP Code
26  * @author Fabrice Bellard
27  * @author Romain Degez
28  */
29
30 #include "rtpdec_formats.h"
31 #include "internal.h"
32 #include "libavutil/attributes.h"
33 #include "libavutil/avstring.h"
34 #include "libavcodec/get_bits.h"
35
36 #define MAX_AAC_HBR_FRAME_SIZE 8191
37
38 /** Structure listing useful vars to parse RTP packet payload */
39 struct PayloadContext {
40     int sizelength;
41     int indexlength;
42     int indexdeltalength;
43     int profile_level_id;
44     int streamtype;
45     int objecttype;
46     char *mode;
47
48     /** mpeg 4 AU headers */
49     struct AUHeaders {
50         int size;
51         int index;
52         int cts_flag;
53         int cts;
54         int dts_flag;
55         int dts;
56         int rap_flag;
57         int streamstate;
58     } *au_headers;
59     int au_headers_allocated;
60     int nb_au_headers;
61     int au_headers_length_bytes;
62     int cur_au_index;
63
64     uint8_t buf[FFMAX(RTP_MAX_PACKET_LENGTH, MAX_AAC_HBR_FRAME_SIZE)];
65     int buf_pos, buf_size;
66     uint32_t timestamp;
67 };
68
69 typedef struct AttrNameMap {
70     const char *str;
71     uint16_t    type;
72     uint32_t    offset;
73 } AttrNameMap;
74
75 /* All known fmtp parameters and the corresponding RTPAttrTypeEnum */
76 #define ATTR_NAME_TYPE_INT 0
77 #define ATTR_NAME_TYPE_STR 1
78 static const AttrNameMap attr_names[] = {
79     { "SizeLength",       ATTR_NAME_TYPE_INT,
80       offsetof(PayloadContext, sizelength) },
81     { "IndexLength",      ATTR_NAME_TYPE_INT,
82       offsetof(PayloadContext, indexlength) },
83     { "IndexDeltaLength", ATTR_NAME_TYPE_INT,
84       offsetof(PayloadContext, indexdeltalength) },
85     { "profile-level-id", ATTR_NAME_TYPE_INT,
86       offsetof(PayloadContext, profile_level_id) },
87     { "StreamType",       ATTR_NAME_TYPE_INT,
88       offsetof(PayloadContext, streamtype) },
89     { "mode",             ATTR_NAME_TYPE_STR,
90       offsetof(PayloadContext, mode) },
91     { NULL, -1, -1 },
92 };
93
94 static void free_context(PayloadContext *data)
95 {
96     av_free(data->au_headers);
97     av_free(data->mode);
98     av_free(data);
99 }
100
101 static int parse_fmtp_config(AVCodecContext *codec, const char *value)
102 {
103     /* decode the hexa encoded parameter */
104     int len = ff_hex_to_data(NULL, value);
105     av_free(codec->extradata);
106     codec->extradata = av_mallocz(len + FF_INPUT_BUFFER_PADDING_SIZE);
107     if (!codec->extradata)
108         return AVERROR(ENOMEM);
109     codec->extradata_size = len;
110     ff_hex_to_data(codec->extradata, value);
111     return 0;
112 }
113
114 static int rtp_parse_mp4_au(PayloadContext *data, const uint8_t *buf, int len)
115 {
116     int au_headers_length, au_header_size, i;
117     GetBitContext getbitcontext;
118
119     if (len < 2)
120         return AVERROR_INVALIDDATA;
121
122     /* decode the first 2 bytes where the AUHeader sections are stored
123        length in bits */
124     au_headers_length = AV_RB16(buf);
125
126     if (au_headers_length > RTP_MAX_PACKET_LENGTH)
127       return -1;
128
129     data->au_headers_length_bytes = (au_headers_length + 7) / 8;
130
131     /* skip AU headers length section (2 bytes) */
132     buf += 2;
133     len -= 2;
134
135     if (len < data->au_headers_length_bytes)
136         return AVERROR_INVALIDDATA;
137
138     init_get_bits(&getbitcontext, buf, data->au_headers_length_bytes * 8);
139
140     /* XXX: Wrong if optionnal additional sections are present (cts, dts etc...) */
141     au_header_size = data->sizelength + data->indexlength;
142     if (au_header_size <= 0 || (au_headers_length % au_header_size != 0))
143         return -1;
144
145     data->nb_au_headers = au_headers_length / au_header_size;
146     if (!data->au_headers || data->au_headers_allocated < data->nb_au_headers) {
147         av_free(data->au_headers);
148         data->au_headers = av_malloc(sizeof(struct AUHeaders) * data->nb_au_headers);
149         if (!data->au_headers)
150             return AVERROR(ENOMEM);
151         data->au_headers_allocated = data->nb_au_headers;
152     }
153
154     for (i = 0; i < data->nb_au_headers; ++i) {
155         data->au_headers[i].size  = get_bits_long(&getbitcontext, data->sizelength);
156         data->au_headers[i].index = get_bits_long(&getbitcontext, data->indexlength);
157     }
158
159     return 0;
160 }
161
162
163 /* Follows RFC 3640 */
164 static int aac_parse_packet(AVFormatContext *ctx, PayloadContext *data,
165                             AVStream *st, AVPacket *pkt, uint32_t *timestamp,
166                             const uint8_t *buf, int len, uint16_t seq,
167                             int flags)
168 {
169     int ret;
170
171     if (!buf) {
172         if (data->cur_au_index > data->nb_au_headers) {
173             av_log(ctx, AV_LOG_ERROR, "Invalid parser state\n");
174             return AVERROR_INVALIDDATA;
175         }
176         if (data->buf_size - data->buf_pos < data->au_headers[data->cur_au_index].size) {
177             av_log(ctx, AV_LOG_ERROR, "Invalid AU size\n");
178             return AVERROR_INVALIDDATA;
179         }
180         if ((ret = av_new_packet(pkt, data->au_headers[data->cur_au_index].size)) < 0) {
181             av_log(ctx, AV_LOG_ERROR, "Out of memory\n");
182             return ret;
183         }
184         memcpy(pkt->data, &data->buf[data->buf_pos], data->au_headers[data->cur_au_index].size);
185         data->buf_pos += data->au_headers[data->cur_au_index].size;
186         pkt->stream_index = st->index;
187         data->cur_au_index++;
188
189         if (data->cur_au_index == data->nb_au_headers) {
190             data->buf_pos = 0;
191             return 0;
192         }
193
194         return 1;
195     }
196
197     if (rtp_parse_mp4_au(data, buf, len)) {
198         av_log(ctx, AV_LOG_ERROR, "Error parsing AU headers\n");
199         return -1;
200     }
201
202     buf += data->au_headers_length_bytes + 2;
203     len -= data->au_headers_length_bytes + 2;
204     if (data->nb_au_headers == 1 && len < data->au_headers[0].size) {
205         /* Packet is fragmented */
206
207         if (!data->buf_pos) {
208             if (data->au_headers[0].size > MAX_AAC_HBR_FRAME_SIZE) {
209                 av_log(ctx, AV_LOG_ERROR, "Invalid AU size\n");
210                 return AVERROR_INVALIDDATA;
211             }
212
213             data->buf_size = data->au_headers[0].size;
214             data->timestamp = *timestamp;
215         }
216
217         if (data->timestamp != *timestamp ||
218             data->au_headers[0].size != data->buf_size ||
219             data->buf_pos + len > MAX_AAC_HBR_FRAME_SIZE) {
220             data->buf_pos = 0;
221             data->buf_size = 0;
222             av_log(ctx, AV_LOG_ERROR, "Invalid packet received\n");
223             return AVERROR_INVALIDDATA;
224         }
225
226         memcpy(&data->buf[data->buf_pos], buf, len);
227         data->buf_pos += len;
228
229         if (!(flags & RTP_FLAG_MARKER))
230             return AVERROR(EAGAIN);
231
232         if (data->buf_pos != data->buf_size) {
233             data->buf_pos = 0;
234             av_log(ctx, AV_LOG_ERROR, "Missed some packets, discarding frame\n");
235             return AVERROR_INVALIDDATA;
236         }
237
238         data->buf_pos = 0;
239         ret = av_new_packet(pkt, data->buf_size);
240         if (ret < 0) {
241             av_log(ctx, AV_LOG_ERROR, "Out of memory\n");
242             return ret;
243         }
244         pkt->stream_index = st->index;
245
246         memcpy(pkt->data, data->buf, data->buf_size);
247
248         return 0;
249     }
250
251     if (len < data->au_headers[0].size) {
252         av_log(ctx, AV_LOG_ERROR, "First AU larger than packet size\n");
253         return AVERROR_INVALIDDATA;
254     }
255     if ((ret = av_new_packet(pkt, data->au_headers[0].size)) < 0) {
256         av_log(ctx, AV_LOG_ERROR, "Out of memory\n");
257         return ret;
258     }
259     memcpy(pkt->data, buf, data->au_headers[0].size);
260     len -= data->au_headers[0].size;
261     buf += data->au_headers[0].size;
262     pkt->stream_index = st->index;
263
264     if (len > 0 && data->nb_au_headers > 1) {
265         data->buf_size = FFMIN(len, sizeof(data->buf));
266         memcpy(data->buf, buf, data->buf_size);
267         data->cur_au_index = 1;
268         data->buf_pos = 0;
269         return 1;
270     }
271
272     return 0;
273 }
274
275 static int parse_fmtp(AVFormatContext *s,
276                       AVStream *stream, PayloadContext *data,
277                       char *attr, char *value)
278 {
279     AVCodecContext *codec = stream->codec;
280     int res, i;
281
282     if (!strcmp(attr, "config")) {
283         res = parse_fmtp_config(codec, value);
284
285         if (res < 0)
286             return res;
287     }
288
289     if (codec->codec_id == AV_CODEC_ID_AAC) {
290         /* Looking for a known attribute */
291         for (i = 0; attr_names[i].str; ++i) {
292             if (!av_strcasecmp(attr, attr_names[i].str)) {
293                 if (attr_names[i].type == ATTR_NAME_TYPE_INT) {
294                     *(int *)((char *)data+
295                         attr_names[i].offset) = atoi(value);
296                 } else if (attr_names[i].type == ATTR_NAME_TYPE_STR)
297                     *(char **)((char *)data+
298                         attr_names[i].offset) = av_strdup(value);
299             }
300         }
301     }
302     return 0;
303 }
304
305 static int parse_sdp_line(AVFormatContext *s, int st_index,
306                           PayloadContext *data, const char *line)
307 {
308     const char *p;
309
310     if (st_index < 0)
311         return 0;
312
313     if (av_strstart(line, "fmtp:", &p))
314         return ff_parse_fmtp(s, s->streams[st_index], data, p, parse_fmtp);
315
316     return 0;
317 }
318
319 RTPDynamicProtocolHandler ff_mp4v_es_dynamic_handler = {
320     .enc_name           = "MP4V-ES",
321     .codec_type         = AVMEDIA_TYPE_VIDEO,
322     .codec_id           = AV_CODEC_ID_MPEG4,
323     .need_parsing       = AVSTREAM_PARSE_FULL,
324     .priv_data_size     = sizeof(PayloadContext),
325     .parse_sdp_a_line   = parse_sdp_line,
326 };
327
328 RTPDynamicProtocolHandler ff_mpeg4_generic_dynamic_handler = {
329     .enc_name           = "mpeg4-generic",
330     .codec_type         = AVMEDIA_TYPE_AUDIO,
331     .codec_id           = AV_CODEC_ID_AAC,
332     .priv_data_size     = sizeof(PayloadContext),
333     .parse_sdp_a_line   = parse_sdp_line,
334     .free               = free_context,
335     .parse_packet       = aac_parse_packet,
336 };