rtpdec_asf.c 9.9 KB

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