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.

308 lines
9.9KB

  1. /*
  2. * Microsoft RTP/ASF support.
  3. * Copyright (c) 2008 Ronald S. Bultje
  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. * @file
  23. * @brief Microsoft RTP/ASF support
  24. * @author Ronald S. Bultje <rbultje@ronald.bitfreak.net>
  25. */
  26. #include "libavutil/avassert.h"
  27. #include "libavutil/base64.h"
  28. #include "libavutil/avstring.h"
  29. #include "libavutil/intreadwrite.h"
  30. #include "rtp.h"
  31. #include "rtpdec_formats.h"
  32. #include "rtsp.h"
  33. #include "asf.h"
  34. #include "avio_internal.h"
  35. #include "internal.h"
  36. /**
  37. * From MSDN 2.2.1.4, we learn that ASF data packets over RTP should not
  38. * contain any padding. Unfortunately, the header min/max_pktsize are not
  39. * updated (thus making min_pktsize invalid). Here, we "fix" these faulty
  40. * min_pktsize values in the ASF file header.
  41. * @return 0 on success, <0 on failure (currently -1).
  42. */
  43. static int rtp_asf_fix_header(uint8_t *buf, int len)
  44. {
  45. uint8_t *p = buf, *end = buf + len;
  46. if (len < sizeof(ff_asf_guid) * 2 + 22 ||
  47. memcmp(p, ff_asf_header, sizeof(ff_asf_guid))) {
  48. return -1;
  49. }
  50. p += sizeof(ff_asf_guid) + 14;
  51. do {
  52. uint64_t chunksize = AV_RL64(p + sizeof(ff_asf_guid));
  53. int skip = 6 * 8 + 3 * 4 + sizeof(ff_asf_guid) * 2;
  54. if (memcmp(p, ff_asf_file_header, sizeof(ff_asf_guid))) {
  55. if (chunksize > end - p)
  56. return -1;
  57. p += chunksize;
  58. continue;
  59. }
  60. if (end - p < 8 + skip)
  61. break;
  62. /* skip most of the file header, to min_pktsize */
  63. p += skip;
  64. if (AV_RL32(p) == AV_RL32(p + 4)) {
  65. /* and set that to zero */
  66. AV_WL32(p, 0);
  67. return 0;
  68. }
  69. break;
  70. } while (end - p >= sizeof(ff_asf_guid) + 8);
  71. return -1;
  72. }
  73. /**
  74. * The following code is basically a buffered AVIOContext,
  75. * with the added benefit of returning -EAGAIN (instead of 0)
  76. * on packet boundaries, such that the ASF demuxer can return
  77. * safely and resume business at the next packet.
  78. */
  79. static int packetizer_read(void *opaque, uint8_t *buf, int buf_size)
  80. {
  81. return AVERROR(EAGAIN);
  82. }
  83. static void init_packetizer(AVIOContext *pb, uint8_t *buf, int len)
  84. {
  85. ffio_init_context(pb, buf, len, 0, NULL, packetizer_read, NULL, NULL);
  86. /* this "fills" the buffer with its current content */
  87. pb->pos = len;
  88. pb->buf_end = buf + len;
  89. }
  90. int ff_wms_parse_sdp_a_line(AVFormatContext *s, const char *p)
  91. {
  92. int ret = 0;
  93. if (av_strstart(p, "pgmpu:data:application/vnd.ms.wms-hdr.asfv1;base64,", &p)) {
  94. AVIOContext pb;
  95. RTSPState *rt = s->priv_data;
  96. AVDictionary *opts = NULL;
  97. int len = strlen(p) * 6 / 8;
  98. char *buf = av_mallocz(len);
  99. AVInputFormat *iformat;
  100. av_base64_decode(buf, p, len);
  101. if (rtp_asf_fix_header(buf, len) < 0)
  102. av_log(s, AV_LOG_ERROR,
  103. "Failed to fix invalid RTSP-MS/ASF min_pktsize\n");
  104. init_packetizer(&pb, buf, len);
  105. if (rt->asf_ctx) {
  106. avformat_close_input(&rt->asf_ctx);
  107. }
  108. if (!(iformat = av_find_input_format("asf")))
  109. return AVERROR_DEMUXER_NOT_FOUND;
  110. if (!(rt->asf_ctx = avformat_alloc_context()))
  111. return AVERROR(ENOMEM);
  112. rt->asf_ctx->pb = &pb;
  113. av_dict_set(&opts, "no_resync_search", "1", 0);
  114. if ((ret = ff_copy_whitelists(rt->asf_ctx, s)) < 0) {
  115. av_dict_free(&opts);
  116. return ret;
  117. }
  118. ret = avformat_open_input(&rt->asf_ctx, "", iformat, &opts);
  119. av_dict_free(&opts);
  120. if (ret < 0)
  121. return ret;
  122. av_dict_copy(&s->metadata, rt->asf_ctx->metadata, 0);
  123. rt->asf_pb_pos = avio_tell(&pb);
  124. av_free(buf);
  125. rt->asf_ctx->pb = NULL;
  126. }
  127. return ret;
  128. }
  129. static int asfrtp_parse_sdp_line(AVFormatContext *s, int stream_index,
  130. PayloadContext *asf, const char *line)
  131. {
  132. if (stream_index < 0)
  133. return 0;
  134. if (av_strstart(line, "stream:", &line)) {
  135. RTSPState *rt = s->priv_data;
  136. s->streams[stream_index]->id = strtol(line, NULL, 10);
  137. if (rt->asf_ctx) {
  138. int i;
  139. for (i = 0; i < rt->asf_ctx->nb_streams; i++) {
  140. if (s->streams[stream_index]->id == rt->asf_ctx->streams[i]->id) {
  141. *s->streams[stream_index]->codec =
  142. *rt->asf_ctx->streams[i]->codec;
  143. s->streams[stream_index]->need_parsing =
  144. rt->asf_ctx->streams[i]->need_parsing;
  145. rt->asf_ctx->streams[i]->codec->extradata_size = 0;
  146. rt->asf_ctx->streams[i]->codec->extradata = NULL;
  147. avpriv_set_pts_info(s->streams[stream_index], 32, 1, 1000);
  148. }
  149. }
  150. }
  151. }
  152. return 0;
  153. }
  154. struct PayloadContext {
  155. AVIOContext *pktbuf, pb;
  156. uint8_t *buf;
  157. };
  158. /**
  159. * @return 0 when a packet was written into /p pkt, and no more data is left;
  160. * 1 when a packet was written into /p pkt, and more packets might be left;
  161. * <0 when not enough data was provided to return a full packet, or on error.
  162. */
  163. static int asfrtp_parse_packet(AVFormatContext *s, PayloadContext *asf,
  164. AVStream *st, AVPacket *pkt,
  165. uint32_t *timestamp,
  166. const uint8_t *buf, int len, uint16_t seq,
  167. int flags)
  168. {
  169. AVIOContext *pb = &asf->pb;
  170. int res, mflags, len_off;
  171. RTSPState *rt = s->priv_data;
  172. if (!rt->asf_ctx)
  173. return -1;
  174. if (len > 0) {
  175. int off, out_len = 0;
  176. if (len < 4)
  177. return -1;
  178. av_freep(&asf->buf);
  179. ffio_init_context(pb, (uint8_t *)buf, len, 0, NULL, NULL, NULL, NULL);
  180. while (avio_tell(pb) + 4 < len) {
  181. int start_off = avio_tell(pb);
  182. mflags = avio_r8(pb);
  183. len_off = avio_rb24(pb);
  184. if (mflags & 0x20) /**< relative timestamp */
  185. avio_skip(pb, 4);
  186. if (mflags & 0x10) /**< has duration */
  187. avio_skip(pb, 4);
  188. if (mflags & 0x8) /**< has location ID */
  189. avio_skip(pb, 4);
  190. off = avio_tell(pb);
  191. if (!(mflags & 0x40)) {
  192. /**
  193. * If 0x40 is not set, the len_off field specifies an offset
  194. * of this packet's payload data in the complete (reassembled)
  195. * ASF packet. This is used to spread one ASF packet over
  196. * multiple RTP packets.
  197. */
  198. if (asf->pktbuf && len_off != avio_tell(asf->pktbuf)) {
  199. ffio_free_dyn_buf(&asf->pktbuf);
  200. }
  201. if (!len_off && !asf->pktbuf &&
  202. (res = avio_open_dyn_buf(&asf->pktbuf)) < 0)
  203. return res;
  204. if (!asf->pktbuf)
  205. return AVERROR(EIO);
  206. avio_write(asf->pktbuf, buf + off, len - off);
  207. avio_skip(pb, len - off);
  208. if (!(flags & RTP_FLAG_MARKER))
  209. return -1;
  210. out_len = avio_close_dyn_buf(asf->pktbuf, &asf->buf);
  211. asf->pktbuf = NULL;
  212. } else {
  213. /**
  214. * If 0x40 is set, the len_off field specifies the length of
  215. * the next ASF packet that can be read from this payload
  216. * data alone. This is commonly the same as the payload size,
  217. * but could be less in case of packet splitting (i.e.
  218. * multiple ASF packets in one RTP packet).
  219. */
  220. int cur_len = start_off + len_off - off;
  221. int prev_len = out_len;
  222. out_len += cur_len;
  223. if (FFMIN(cur_len, len - off) < 0)
  224. return -1;
  225. if ((res = av_reallocp(&asf->buf, out_len)) < 0)
  226. return res;
  227. memcpy(asf->buf + prev_len, buf + off,
  228. FFMIN(cur_len, len - off));
  229. avio_skip(pb, cur_len);
  230. }
  231. }
  232. init_packetizer(pb, asf->buf, out_len);
  233. pb->pos += rt->asf_pb_pos;
  234. pb->eof_reached = 0;
  235. rt->asf_ctx->pb = pb;
  236. }
  237. for (;;) {
  238. int i;
  239. res = ff_read_packet(rt->asf_ctx, pkt);
  240. rt->asf_pb_pos = avio_tell(pb);
  241. if (res != 0)
  242. break;
  243. for (i = 0; i < s->nb_streams; i++) {
  244. if (s->streams[i]->id == rt->asf_ctx->streams[pkt->stream_index]->id) {
  245. pkt->stream_index = i;
  246. return 1; // FIXME: return 0 if last packet
  247. }
  248. }
  249. av_free_packet(pkt);
  250. }
  251. return res == 1 ? -1 : res;
  252. }
  253. static void asfrtp_close_context(PayloadContext *asf)
  254. {
  255. ffio_free_dyn_buf(&asf->pktbuf);
  256. av_freep(&asf->buf);
  257. }
  258. #define RTP_ASF_HANDLER(n, s, t) \
  259. RTPDynamicProtocolHandler ff_ms_rtp_ ## n ## _handler = { \
  260. .enc_name = s, \
  261. .codec_type = t, \
  262. .codec_id = AV_CODEC_ID_NONE, \
  263. .priv_data_size = sizeof(PayloadContext), \
  264. .parse_sdp_a_line = asfrtp_parse_sdp_line, \
  265. .close = asfrtp_close_context, \
  266. .parse_packet = asfrtp_parse_packet, \
  267. }
  268. RTP_ASF_HANDLER(asf_pfv, "x-asf-pf", AVMEDIA_TYPE_VIDEO);
  269. RTP_ASF_HANDLER(asf_pfa, "x-asf-pf", AVMEDIA_TYPE_AUDIO);