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.

295 lines
9.4KB

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