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.

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