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.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/base64.h>
  27. #include <libavutil/avstring.h>
  28. #include <libavutil/intreadwrite.h>
  29. #include "rtp.h"
  30. #include "rtpdec_asf.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. void ff_wms_parse_sdp_a_line(AVFormatContext *s, const char *p)
  85. {
  86. if (av_strstart(p, "pgmpu:data:application/vnd.ms.wms-hdr.asfv1;base64,", &p)) {
  87. ByteIOContext pb;
  88. RTSPState *rt = s->priv_data;
  89. int len = strlen(p) * 6 / 8;
  90. char *buf = av_mallocz(len);
  91. av_base64_decode(buf, p, len);
  92. if (rtp_asf_fix_header(buf, len) < 0)
  93. av_log(s, AV_LOG_ERROR,
  94. "Failed to fix invalid RTSP-MS/ASF min_pktsize\n");
  95. init_packetizer(&pb, buf, len);
  96. if (rt->asf_ctx) {
  97. av_close_input_stream(rt->asf_ctx);
  98. rt->asf_ctx = NULL;
  99. }
  100. av_open_input_stream(&rt->asf_ctx, &pb, "", &asf_demuxer, NULL);
  101. rt->asf_pb_pos = url_ftell(&pb);
  102. av_free(buf);
  103. rt->asf_ctx->pb = NULL;
  104. }
  105. }
  106. static int asfrtp_parse_sdp_line(AVFormatContext *s, int stream_index,
  107. PayloadContext *asf, const char *line)
  108. {
  109. if (av_strstart(line, "stream:", &line)) {
  110. RTSPState *rt = s->priv_data;
  111. s->streams[stream_index]->id = strtol(line, NULL, 10);
  112. if (rt->asf_ctx) {
  113. int i;
  114. for (i = 0; i < rt->asf_ctx->nb_streams; i++) {
  115. if (s->streams[stream_index]->id == rt->asf_ctx->streams[i]->id) {
  116. *s->streams[stream_index]->codec =
  117. *rt->asf_ctx->streams[i]->codec;
  118. rt->asf_ctx->streams[i]->codec->extradata_size = 0;
  119. rt->asf_ctx->streams[i]->codec->extradata = NULL;
  120. av_set_pts_info(s->streams[stream_index], 32, 1, 1000);
  121. }
  122. }
  123. }
  124. }
  125. return 0;
  126. }
  127. struct PayloadContext {
  128. ByteIOContext *pktbuf, pb;
  129. uint8_t *buf;
  130. };
  131. /**
  132. * @return 0 when a packet was written into /p pkt, and no more data is left;
  133. * 1 when a packet was written into /p pkt, and more packets might be left;
  134. * <0 when not enough data was provided to return a full packet, or on error.
  135. */
  136. static int asfrtp_parse_packet(AVFormatContext *s, PayloadContext *asf,
  137. AVStream *st, AVPacket *pkt,
  138. uint32_t *timestamp,
  139. const uint8_t *buf, int len, int flags)
  140. {
  141. ByteIOContext *pb = &asf->pb;
  142. int res, mflags, len_off;
  143. RTSPState *rt = s->priv_data;
  144. if (!rt->asf_ctx)
  145. return -1;
  146. if (len > 0) {
  147. int off, out_len;
  148. if (len < 4)
  149. return -1;
  150. init_put_byte(pb, buf, len, 0, NULL, NULL, NULL, NULL);
  151. mflags = get_byte(pb);
  152. if (mflags & 0x80)
  153. flags |= RTP_FLAG_KEY;
  154. len_off = get_be24(pb);
  155. if (mflags & 0x20) /**< relative timestamp */
  156. url_fskip(pb, 4);
  157. if (mflags & 0x10) /**< has duration */
  158. url_fskip(pb, 4);
  159. if (mflags & 0x8) /**< has location ID */
  160. url_fskip(pb, 4);
  161. off = url_ftell(pb);
  162. av_freep(&asf->buf);
  163. if (!(mflags & 0x40)) {
  164. /**
  165. * If 0x40 is not set, the len_off field specifies an offset of this
  166. * packet's payload data in the complete (reassembled) ASF packet.
  167. * This is used to spread one ASF packet over multiple RTP packets.
  168. */
  169. if (asf->pktbuf && len_off != url_ftell(asf->pktbuf)) {
  170. uint8_t *p;
  171. url_close_dyn_buf(asf->pktbuf, &p);
  172. asf->pktbuf = NULL;
  173. av_free(p);
  174. }
  175. if (!len_off && !asf->pktbuf &&
  176. (res = url_open_dyn_buf(&asf->pktbuf)) < 0)
  177. return res;
  178. if (!asf->pktbuf)
  179. return AVERROR(EIO);
  180. put_buffer(asf->pktbuf, buf + off, len - off);
  181. if (!(flags & RTP_FLAG_MARKER))
  182. return -1;
  183. out_len = url_close_dyn_buf(asf->pktbuf, &asf->buf);
  184. asf->pktbuf = NULL;
  185. } else {
  186. /**
  187. * If 0x40 is set, the len_off field specifies the length of the
  188. * next ASF packet that can be read from this payload data alone.
  189. * This is commonly the same as the payload size, but could be
  190. * less in case of packet splitting (i.e. multiple ASF packets in
  191. * one RTP packet).
  192. */
  193. if (len_off != len) {
  194. av_log_missing_feature(s,
  195. "RTSP-MS packet splitting", 1);
  196. return -1;
  197. }
  198. asf->buf = av_malloc(len - off);
  199. out_len = len - off;
  200. memcpy(asf->buf, buf + off, len - off);
  201. }
  202. init_packetizer(pb, asf->buf, out_len);
  203. pb->pos += rt->asf_pb_pos;
  204. pb->eof_reached = 0;
  205. rt->asf_ctx->pb = pb;
  206. }
  207. for (;;) {
  208. int i;
  209. res = av_read_packet(rt->asf_ctx, pkt);
  210. rt->asf_pb_pos = url_ftell(pb);
  211. if (res != 0)
  212. break;
  213. for (i = 0; i < s->nb_streams; i++) {
  214. if (s->streams[i]->id == rt->asf_ctx->streams[pkt->stream_index]->id) {
  215. pkt->stream_index = i;
  216. return 1; // FIXME: return 0 if last packet
  217. }
  218. }
  219. av_free_packet(pkt);
  220. }
  221. return res == 1 ? -1 : res;
  222. }
  223. static PayloadContext *asfrtp_new_context(void)
  224. {
  225. return av_mallocz(sizeof(PayloadContext));
  226. }
  227. static void asfrtp_free_context(PayloadContext *asf)
  228. {
  229. if (asf->pktbuf) {
  230. uint8_t *p = NULL;
  231. url_close_dyn_buf(asf->pktbuf, &p);
  232. asf->pktbuf = NULL;
  233. av_free(p);
  234. }
  235. av_freep(&asf->buf);
  236. av_free(asf);
  237. }
  238. #define RTP_ASF_HANDLER(n, s, t) \
  239. RTPDynamicProtocolHandler ff_ms_rtp_ ## n ## _handler = { \
  240. .enc_name = s, \
  241. .codec_type = t, \
  242. .codec_id = CODEC_ID_NONE, \
  243. .parse_sdp_a_line = asfrtp_parse_sdp_line, \
  244. .open = asfrtp_new_context, \
  245. .close = asfrtp_free_context, \
  246. .parse_packet = asfrtp_parse_packet, \
  247. };
  248. RTP_ASF_HANDLER(asf_pfv, "x-asf-pf", AVMEDIA_TYPE_VIDEO);
  249. RTP_ASF_HANDLER(asf_pfa, "x-asf-pf", AVMEDIA_TYPE_AUDIO);