rtpdec_asf.c 9.4 KB

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