You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

280 lines
8.4KB

  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 FFmpeg.
  7. *
  8. * FFmpeg 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. * FFmpeg 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 FFmpeg; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. /**
  23. * @file
  24. * @brief MPEG4 / RTP Code
  25. * @author Fabrice Bellard
  26. * @author Romain Degez
  27. */
  28. #include "rtpdec_formats.h"
  29. #include "internal.h"
  30. #include "libavutil/avstring.h"
  31. #include "libavcodec/get_bits.h"
  32. /** Structure listing useful vars to parse RTP packet payload */
  33. struct PayloadContext {
  34. int sizelength;
  35. int indexlength;
  36. int indexdeltalength;
  37. int profile_level_id;
  38. int streamtype;
  39. int objecttype;
  40. char *mode;
  41. /** mpeg 4 AU headers */
  42. struct AUHeaders {
  43. int size;
  44. int index;
  45. int cts_flag;
  46. int cts;
  47. int dts_flag;
  48. int dts;
  49. int rap_flag;
  50. int streamstate;
  51. } *au_headers;
  52. int au_headers_allocated;
  53. int nb_au_headers;
  54. int au_headers_length_bytes;
  55. int cur_au_index;
  56. uint8_t buf[RTP_MAX_PACKET_LENGTH];
  57. int buf_pos, buf_size;
  58. };
  59. typedef struct {
  60. const char *str;
  61. uint16_t type;
  62. uint32_t offset;
  63. } AttrNameMap;
  64. /* All known fmtp parameters and the corresponding RTPAttrTypeEnum */
  65. #define ATTR_NAME_TYPE_INT 0
  66. #define ATTR_NAME_TYPE_STR 1
  67. static const AttrNameMap attr_names[] = {
  68. { "SizeLength", ATTR_NAME_TYPE_INT,
  69. offsetof(PayloadContext, sizelength) },
  70. { "IndexLength", ATTR_NAME_TYPE_INT,
  71. offsetof(PayloadContext, indexlength) },
  72. { "IndexDeltaLength", ATTR_NAME_TYPE_INT,
  73. offsetof(PayloadContext, indexdeltalength) },
  74. { "profile-level-id", ATTR_NAME_TYPE_INT,
  75. offsetof(PayloadContext, profile_level_id) },
  76. { "StreamType", ATTR_NAME_TYPE_INT,
  77. offsetof(PayloadContext, streamtype) },
  78. { "mode", ATTR_NAME_TYPE_STR,
  79. offsetof(PayloadContext, mode) },
  80. { NULL, -1, -1 },
  81. };
  82. static PayloadContext *new_context(void)
  83. {
  84. return av_mallocz(sizeof(PayloadContext));
  85. }
  86. static void free_context(PayloadContext *data)
  87. {
  88. av_free(data->au_headers);
  89. av_free(data->mode);
  90. av_free(data);
  91. }
  92. static int parse_fmtp_config(AVCodecContext *codec, char *value)
  93. {
  94. /* decode the hexa encoded parameter */
  95. int len = ff_hex_to_data(NULL, value);
  96. av_free(codec->extradata);
  97. codec->extradata = av_mallocz(len + FF_INPUT_BUFFER_PADDING_SIZE);
  98. if (!codec->extradata)
  99. return AVERROR(ENOMEM);
  100. codec->extradata_size = len;
  101. ff_hex_to_data(codec->extradata, value);
  102. return 0;
  103. }
  104. static int rtp_parse_mp4_au(PayloadContext *data, const uint8_t *buf, int len)
  105. {
  106. int au_headers_length, au_header_size, i;
  107. GetBitContext getbitcontext;
  108. if (len < 2)
  109. return AVERROR_INVALIDDATA;
  110. /* decode the first 2 bytes where the AUHeader sections are stored
  111. length in bits */
  112. au_headers_length = AV_RB16(buf);
  113. if (au_headers_length > RTP_MAX_PACKET_LENGTH)
  114. return -1;
  115. data->au_headers_length_bytes = (au_headers_length + 7) / 8;
  116. /* skip AU headers length section (2 bytes) */
  117. buf += 2;
  118. len -= 2;
  119. if (len < data->au_headers_length_bytes)
  120. return AVERROR_INVALIDDATA;
  121. init_get_bits(&getbitcontext, buf, data->au_headers_length_bytes * 8);
  122. /* XXX: Wrong if optional additional sections are present (cts, dts etc...) */
  123. au_header_size = data->sizelength + data->indexlength;
  124. if (au_header_size <= 0 || (au_headers_length % au_header_size != 0))
  125. return -1;
  126. data->nb_au_headers = au_headers_length / au_header_size;
  127. if (!data->au_headers || data->au_headers_allocated < data->nb_au_headers) {
  128. av_free(data->au_headers);
  129. data->au_headers = av_malloc(sizeof(struct AUHeaders) * data->nb_au_headers);
  130. if (!data->au_headers)
  131. return AVERROR(ENOMEM);
  132. data->au_headers_allocated = data->nb_au_headers;
  133. }
  134. for (i = 0; i < data->nb_au_headers; ++i) {
  135. data->au_headers[i].size = get_bits_long(&getbitcontext, data->sizelength);
  136. data->au_headers[i].index = get_bits_long(&getbitcontext, data->indexlength);
  137. }
  138. return 0;
  139. }
  140. /* Follows RFC 3640 */
  141. static int aac_parse_packet(AVFormatContext *ctx, PayloadContext *data,
  142. AVStream *st, AVPacket *pkt, uint32_t *timestamp,
  143. const uint8_t *buf, int len, uint16_t seq,
  144. int flags)
  145. {
  146. int ret;
  147. if (!buf) {
  148. if (data->cur_au_index > data->nb_au_headers)
  149. return AVERROR_INVALIDDATA;
  150. if (data->buf_size - data->buf_pos < data->au_headers[data->cur_au_index].size)
  151. return AVERROR_INVALIDDATA;
  152. if ((ret = av_new_packet(pkt, data->au_headers[data->cur_au_index].size)) < 0)
  153. return ret;
  154. memcpy(pkt->data, &data->buf[data->buf_pos], data->au_headers[data->cur_au_index].size);
  155. data->buf_pos += data->au_headers[data->cur_au_index].size;
  156. pkt->stream_index = st->index;
  157. data->cur_au_index++;
  158. return data->cur_au_index < data->nb_au_headers;
  159. }
  160. if (rtp_parse_mp4_au(data, buf, len))
  161. return -1;
  162. buf += data->au_headers_length_bytes + 2;
  163. len -= data->au_headers_length_bytes + 2;
  164. if (len < data->au_headers[0].size)
  165. return AVERROR_INVALIDDATA;
  166. if ((ret = av_new_packet(pkt, data->au_headers[0].size)) < 0)
  167. return ret;
  168. memcpy(pkt->data, buf, data->au_headers[0].size);
  169. len -= data->au_headers[0].size;
  170. buf += data->au_headers[0].size;
  171. pkt->stream_index = st->index;
  172. if (len > 0 && data->nb_au_headers > 1) {
  173. data->buf_size = FFMIN(len, sizeof(data->buf));
  174. memcpy(data->buf, buf, data->buf_size);
  175. data->cur_au_index = 1;
  176. data->buf_pos = 0;
  177. return 1;
  178. }
  179. return 0;
  180. }
  181. static int parse_fmtp(AVStream *stream, PayloadContext *data,
  182. char *attr, char *value)
  183. {
  184. AVCodecContext *codec = stream->codec;
  185. int res, i;
  186. if (!strcmp(attr, "config")) {
  187. res = parse_fmtp_config(codec, value);
  188. if (res < 0)
  189. return res;
  190. }
  191. if (codec->codec_id == AV_CODEC_ID_AAC) {
  192. /* Looking for a known attribute */
  193. for (i = 0; attr_names[i].str; ++i) {
  194. if (!av_strcasecmp(attr, attr_names[i].str)) {
  195. if (attr_names[i].type == ATTR_NAME_TYPE_INT) {
  196. *(int *)((char *)data+
  197. attr_names[i].offset) = atoi(value);
  198. } else if (attr_names[i].type == ATTR_NAME_TYPE_STR)
  199. *(char **)((char *)data+
  200. attr_names[i].offset) = av_strdup(value);
  201. }
  202. }
  203. }
  204. return 0;
  205. }
  206. static int parse_sdp_line(AVFormatContext *s, int st_index,
  207. PayloadContext *data, const char *line)
  208. {
  209. const char *p;
  210. if (st_index < 0)
  211. return 0;
  212. if (av_strstart(line, "fmtp:", &p))
  213. return ff_parse_fmtp(s->streams[st_index], data, p, parse_fmtp);
  214. return 0;
  215. }
  216. static int init_video(AVFormatContext *s, int st_index, PayloadContext *data)
  217. {
  218. if (st_index < 0)
  219. return 0;
  220. s->streams[st_index]->need_parsing = AVSTREAM_PARSE_FULL;
  221. return 0;
  222. }
  223. RTPDynamicProtocolHandler ff_mp4v_es_dynamic_handler = {
  224. .enc_name = "MP4V-ES",
  225. .codec_type = AVMEDIA_TYPE_VIDEO,
  226. .codec_id = AV_CODEC_ID_MPEG4,
  227. .init = init_video,
  228. .parse_sdp_a_line = parse_sdp_line,
  229. };
  230. RTPDynamicProtocolHandler ff_mpeg4_generic_dynamic_handler = {
  231. .enc_name = "mpeg4-generic",
  232. .codec_type = AVMEDIA_TYPE_AUDIO,
  233. .codec_id = AV_CODEC_ID_AAC,
  234. .parse_sdp_a_line = parse_sdp_line,
  235. .alloc = new_context,
  236. .free = free_context,
  237. .parse_packet = aac_parse_packet
  238. };