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.

632 lines
23KB

  1. /*
  2. * MMS protocol over TCP
  3. * Copyright (c) 2006,2007 Ryan Martell
  4. * Copyright (c) 2007 Björn Axelsson
  5. * Copyright (c) 2010 Zhentan Feng <spyfeng at gmail dot com>
  6. *
  7. * This file is part of FFmpeg.
  8. *
  9. * FFmpeg is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU Lesser General Public
  11. * License as published by the Free Software Foundation; either
  12. * version 2.1 of the License, or (at your option) any later version.
  13. *
  14. * FFmpeg is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * Lesser General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Lesser General Public
  20. * License along with FFmpeg; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  22. */
  23. /* References
  24. * MMS protocol specification:
  25. * [1]http://msdn.microsoft.com/en-us/library/cc234711(PROT.10).aspx
  26. * ASF specification. Revision 01.20.03.
  27. * [2]http://msdn.microsoft.com/en-us/library/bb643323.aspx
  28. */
  29. #include "avformat.h"
  30. #include "mms.h"
  31. #include "internal.h"
  32. #include "avio_internal.h"
  33. #include "libavutil/intreadwrite.h"
  34. #include "libavcodec/bytestream.h"
  35. #include "network.h"
  36. #define LOCAL_ADDRESS 0xc0a80081 // FIXME get and use correct local ip address.
  37. #define LOCAL_PORT 1037 // as above.
  38. /** Client to server packet types. */
  39. typedef enum {
  40. CS_PKT_INITIAL = 0x01,
  41. CS_PKT_PROTOCOL_SELECT = 0x02,
  42. CS_PKT_MEDIA_FILE_REQUEST = 0x05,
  43. CS_PKT_START_FROM_PKT_ID = 0x07,
  44. CS_PKT_STREAM_PAUSE = 0x09,
  45. CS_PKT_STREAM_CLOSE = 0x0d,
  46. CS_PKT_MEDIA_HEADER_REQUEST = 0x15,
  47. CS_PKT_TIMING_DATA_REQUEST = 0x18,
  48. CS_PKT_USER_PASSWORD = 0x1a,
  49. CS_PKT_KEEPALIVE = 0x1b,
  50. CS_PKT_STREAM_ID_REQUEST = 0x33,
  51. } MMSCSPacketType;
  52. /** Server to client packet types. */
  53. typedef enum {
  54. /** Control packets. */
  55. /*@{*/
  56. SC_PKT_CLIENT_ACCEPTED = 0x01,
  57. SC_PKT_PROTOCOL_ACCEPTED = 0x02,
  58. SC_PKT_PROTOCOL_FAILED = 0x03,
  59. SC_PKT_MEDIA_PKT_FOLLOWS = 0x05,
  60. SC_PKT_MEDIA_FILE_DETAILS = 0x06,
  61. SC_PKT_HEADER_REQUEST_ACCEPTED = 0x11,
  62. SC_PKT_TIMING_TEST_REPLY = 0x15,
  63. SC_PKT_PASSWORD_REQUIRED = 0x1a,
  64. SC_PKT_KEEPALIVE = 0x1b,
  65. SC_PKT_STREAM_STOPPED = 0x1e,
  66. SC_PKT_STREAM_CHANGING = 0x20,
  67. SC_PKT_STREAM_ID_ACCEPTED = 0x21,
  68. /*@}*/
  69. /** Pseudo packets. */
  70. /*@{*/
  71. SC_PKT_CANCEL = -1,
  72. SC_PKT_NO_DATA = -2,
  73. /*@}*/
  74. /** Data packets. */
  75. /*@{*/
  76. SC_PKT_ASF_HEADER = 0x010000,// make it bigger than 0xFF in case of
  77. SC_PKT_ASF_MEDIA = 0x010001,// receiving false data packets.
  78. /*@}*/
  79. } MMSSCPacketType;
  80. typedef struct {
  81. MMSContext mms;
  82. int outgoing_packet_seq; ///< Outgoing packet sequence number.
  83. char path[256]; ///< Path of the resource being asked for.
  84. char host[128]; ///< Host of the resources.
  85. int incoming_packet_seq; ///< Incoming packet sequence number.
  86. int incoming_flags; ///< Incoming packet flags.
  87. int packet_id; ///< Identifier for packets in the current stream.
  88. unsigned int header_packet_id; ///< default is 2.
  89. } MMSTContext;
  90. /** Create MMST command packet header */
  91. static void start_command_packet(MMSTContext *mmst, MMSCSPacketType packet_type)
  92. {
  93. MMSContext *mms = &mmst->mms;
  94. mms->write_out_ptr = mms->out_buffer;
  95. bytestream_put_le32(&mms->write_out_ptr, 1); // start sequence
  96. bytestream_put_le32(&mms->write_out_ptr, 0xb00bface);
  97. bytestream_put_le32(&mms->write_out_ptr, 0); // Length starts from after the protocol type bytes
  98. bytestream_put_le32(&mms->write_out_ptr, MKTAG('M','M','S',' '));
  99. bytestream_put_le32(&mms->write_out_ptr, 0);
  100. bytestream_put_le32(&mms->write_out_ptr, mmst->outgoing_packet_seq++);
  101. bytestream_put_le64(&mms->write_out_ptr, 0); // timestamp
  102. bytestream_put_le32(&mms->write_out_ptr, 0);
  103. bytestream_put_le16(&mms->write_out_ptr, packet_type);
  104. bytestream_put_le16(&mms->write_out_ptr, 3); // direction to server
  105. }
  106. /** Add prefixes to MMST command packet. */
  107. static void insert_command_prefixes(MMSContext *mms,
  108. uint32_t prefix1, uint32_t prefix2)
  109. {
  110. bytestream_put_le32(&mms->write_out_ptr, prefix1); // first prefix
  111. bytestream_put_le32(&mms->write_out_ptr, prefix2); // second prefix
  112. }
  113. /** Send a prepared MMST command packet. */
  114. static int send_command_packet(MMSTContext *mmst)
  115. {
  116. MMSContext *mms = &mmst->mms;
  117. int len= mms->write_out_ptr - mms->out_buffer;
  118. int exact_length = FFALIGN(len, 8);
  119. int first_length= exact_length - 16;
  120. int len8= first_length/8;
  121. int write_result;
  122. // update packet length fields.
  123. AV_WL32(mms->out_buffer + 8, first_length);
  124. AV_WL32(mms->out_buffer + 16, len8);
  125. AV_WL32(mms->out_buffer + 32, len8-2);
  126. memset(mms->write_out_ptr, 0, exact_length - len);
  127. // write it out.
  128. write_result= url_write(mms->mms_hd, mms->out_buffer, exact_length);
  129. if(write_result != exact_length) {
  130. av_log(NULL, AV_LOG_ERROR,
  131. "Failed to write data of length %d: %d (%s)\n",
  132. exact_length, write_result,
  133. write_result < 0 ? strerror(write_result) :
  134. "The server closed the connection");
  135. return AVERROR_IO;
  136. }
  137. return 0;
  138. }
  139. static void mms_put_utf16(MMSContext *mms, uint8_t *src)
  140. {
  141. AVIOContext bic;
  142. int size = mms->write_out_ptr - mms->out_buffer;
  143. int len;
  144. ffio_init_context(&bic, mms->write_out_ptr,
  145. sizeof(mms->out_buffer) - size, 1, NULL, NULL, NULL, NULL);
  146. len = avio_put_str16le(&bic, src);
  147. mms->write_out_ptr += len;
  148. }
  149. static int send_time_test_data(MMSTContext *mmst)
  150. {
  151. start_command_packet(mmst, CS_PKT_TIMING_DATA_REQUEST);
  152. insert_command_prefixes(&mmst->mms, 0x00f0f0f0, 0x0004000b);
  153. return send_command_packet(mmst);
  154. }
  155. static int send_protocol_select(MMSTContext *mmst)
  156. {
  157. char data_string[256];
  158. MMSContext *mms = &mmst->mms;
  159. start_command_packet(mmst, CS_PKT_PROTOCOL_SELECT);
  160. insert_command_prefixes(mms, 0, 0xffffffff);
  161. bytestream_put_le32(&mms->write_out_ptr, 0); // maxFunnelBytes
  162. bytestream_put_le32(&mms->write_out_ptr, 0x00989680); // maxbitRate
  163. bytestream_put_le32(&mms->write_out_ptr, 2); // funnelMode
  164. snprintf(data_string, sizeof(data_string), "\\\\%d.%d.%d.%d\\%s\\%d",
  165. (LOCAL_ADDRESS>>24)&0xff,
  166. (LOCAL_ADDRESS>>16)&0xff,
  167. (LOCAL_ADDRESS>>8)&0xff,
  168. LOCAL_ADDRESS&0xff,
  169. "TCP", // or UDP
  170. LOCAL_PORT);
  171. mms_put_utf16(mms, data_string);
  172. return send_command_packet(mmst);
  173. }
  174. static int send_media_file_request(MMSTContext *mmst)
  175. {
  176. MMSContext *mms = &mmst->mms;
  177. start_command_packet(mmst, CS_PKT_MEDIA_FILE_REQUEST);
  178. insert_command_prefixes(mms, 1, 0xffffffff);
  179. bytestream_put_le32(&mms->write_out_ptr, 0);
  180. bytestream_put_le32(&mms->write_out_ptr, 0);
  181. mms_put_utf16(mms, mmst->path + 1); // +1 for skip "/"
  182. return send_command_packet(mmst);
  183. }
  184. static void handle_packet_stream_changing_type(MMSTContext *mmst)
  185. {
  186. MMSContext *mms = &mmst->mms;
  187. av_dlog(NULL, "Stream changing!\n");
  188. // 40 is the packet header size, 7 is the prefix size.
  189. mmst->header_packet_id= AV_RL32(mms->in_buffer + 40 + 7);
  190. av_dlog(NULL, "Changed header prefix to 0x%x", mmst->header_packet_id);
  191. }
  192. static int send_keepalive_packet(MMSTContext *mmst)
  193. {
  194. // respond to a keepalive with a keepalive...
  195. start_command_packet(mmst, CS_PKT_KEEPALIVE);
  196. insert_command_prefixes(&mmst->mms, 1, 0x100FFFF);
  197. return send_command_packet(mmst);
  198. }
  199. /** Pad media packets smaller than max_packet_size and/or adjust read position
  200. * after a seek. */
  201. static void pad_media_packet(MMSContext *mms)
  202. {
  203. if(mms->remaining_in_len<mms->asf_packet_len) {
  204. int padding_size = mms->asf_packet_len - mms->remaining_in_len;
  205. memset(mms->in_buffer + mms->remaining_in_len, 0, padding_size);
  206. mms->remaining_in_len += padding_size;
  207. }
  208. }
  209. /** Read incoming MMST media, header or command packet. */
  210. static MMSSCPacketType get_tcp_server_response(MMSTContext *mmst)
  211. {
  212. int read_result;
  213. MMSSCPacketType packet_type= -1;
  214. MMSContext *mms = &mmst->mms;
  215. for(;;) {
  216. read_result = url_read_complete(mms->mms_hd, mms->in_buffer, 8);
  217. if (read_result != 8) {
  218. if(read_result < 0) {
  219. av_log(NULL, AV_LOG_ERROR,
  220. "Error reading packet header: %d (%s)\n",
  221. read_result, strerror(read_result));
  222. packet_type = SC_PKT_CANCEL;
  223. } else {
  224. av_log(NULL, AV_LOG_ERROR,
  225. "The server closed the connection\n");
  226. packet_type = SC_PKT_NO_DATA;
  227. }
  228. return packet_type;
  229. }
  230. // handle command packet.
  231. if(AV_RL32(mms->in_buffer + 4)==0xb00bface) {
  232. int length_remaining, hr;
  233. mmst->incoming_flags= mms->in_buffer[3];
  234. read_result= url_read_complete(mms->mms_hd, mms->in_buffer+8, 4);
  235. if(read_result != 4) {
  236. av_log(NULL, AV_LOG_ERROR,
  237. "Reading command packet length failed: %d (%s)\n",
  238. read_result,
  239. read_result < 0 ? strerror(read_result) :
  240. "The server closed the connection");
  241. return read_result < 0 ? read_result : AVERROR_IO;
  242. }
  243. length_remaining= AV_RL32(mms->in_buffer+8) + 4;
  244. av_dlog(NULL, "Length remaining is %d\n", length_remaining);
  245. // read the rest of the packet.
  246. if (length_remaining < 0
  247. || length_remaining > sizeof(mms->in_buffer) - 12) {
  248. av_log(NULL, AV_LOG_ERROR,
  249. "Incoming packet length %d exceeds bufsize %zu\n",
  250. length_remaining, sizeof(mms->in_buffer) - 12);
  251. return AVERROR_INVALIDDATA;
  252. }
  253. read_result = url_read_complete(mms->mms_hd, mms->in_buffer + 12,
  254. length_remaining) ;
  255. if (read_result != length_remaining) {
  256. av_log(NULL, AV_LOG_ERROR,
  257. "Reading pkt data (length=%d) failed: %d (%s)\n",
  258. length_remaining, read_result,
  259. read_result < 0 ? strerror(read_result) :
  260. "The server closed the connection");
  261. return read_result < 0 ? read_result : AVERROR_IO;
  262. }
  263. packet_type= AV_RL16(mms->in_buffer+36);
  264. if (read_result >= 44 && (hr = AV_RL32(mms->in_buffer + 40))) {
  265. av_log(NULL, AV_LOG_ERROR,
  266. "Server sent a message with packet type 0x%x and error status code 0x%08x\n", packet_type, hr);
  267. return AVERROR_UNKNOWN;
  268. }
  269. } else {
  270. int length_remaining;
  271. int packet_id_type;
  272. int tmp;
  273. // note we cache the first 8 bytes,
  274. // then fill up the buffer with the others
  275. tmp = AV_RL16(mms->in_buffer + 6);
  276. length_remaining = (tmp - 8) & 0xffff;
  277. mmst->incoming_packet_seq = AV_RL32(mms->in_buffer);
  278. packet_id_type = mms->in_buffer[4];
  279. mmst->incoming_flags = mms->in_buffer[5];
  280. if (length_remaining < 0
  281. || length_remaining > sizeof(mms->in_buffer) - 8) {
  282. av_log(NULL, AV_LOG_ERROR,
  283. "Data length %d is invalid or too large (max=%zu)\n",
  284. length_remaining, sizeof(mms->in_buffer));
  285. return AVERROR_INVALIDDATA;
  286. }
  287. mms->remaining_in_len = length_remaining;
  288. mms->read_in_ptr = mms->in_buffer;
  289. read_result= url_read_complete(mms->mms_hd, mms->in_buffer, length_remaining);
  290. if(read_result != length_remaining) {
  291. av_log(NULL, AV_LOG_ERROR,
  292. "Failed to read packet data of size %d: %d (%s)\n",
  293. length_remaining, read_result,
  294. read_result < 0 ? strerror(read_result) :
  295. "The server closed the connection");
  296. return read_result < 0 ? read_result : AVERROR_IO;
  297. }
  298. // if we successfully read everything.
  299. if(packet_id_type == mmst->header_packet_id) {
  300. packet_type = SC_PKT_ASF_HEADER;
  301. // Store the asf header
  302. if(!mms->header_parsed) {
  303. void *p = av_realloc(mms->asf_header,
  304. mms->asf_header_size + mms->remaining_in_len);
  305. if (!p) {
  306. av_freep(&mms->asf_header);
  307. return AVERROR(ENOMEM);
  308. }
  309. mms->asf_header = p;
  310. memcpy(mms->asf_header + mms->asf_header_size,
  311. mms->read_in_ptr, mms->remaining_in_len);
  312. mms->asf_header_size += mms->remaining_in_len;
  313. }
  314. // 0x04 means asf header is sent in multiple packets.
  315. if (mmst->incoming_flags == 0x04)
  316. continue;
  317. } else if(packet_id_type == mmst->packet_id) {
  318. packet_type = SC_PKT_ASF_MEDIA;
  319. } else {
  320. av_dlog(NULL, "packet id type %d is old.", packet_id_type);
  321. continue;
  322. }
  323. }
  324. // preprocess some packet type
  325. if(packet_type == SC_PKT_KEEPALIVE) {
  326. send_keepalive_packet(mmst);
  327. continue;
  328. } else if(packet_type == SC_PKT_STREAM_CHANGING) {
  329. handle_packet_stream_changing_type(mmst);
  330. } else if(packet_type == SC_PKT_ASF_MEDIA) {
  331. pad_media_packet(mms);
  332. }
  333. return packet_type;
  334. }
  335. }
  336. static int mms_safe_send_recv(MMSTContext *mmst,
  337. int (*send_fun)(MMSTContext *mmst),
  338. const MMSSCPacketType expect_type)
  339. {
  340. MMSSCPacketType type;
  341. if(send_fun) {
  342. int ret = send_fun(mmst);
  343. if (ret < 0) {
  344. av_dlog(NULL, "Send Packet error before expecting recv packet %d\n", expect_type);
  345. return ret;
  346. }
  347. }
  348. if ((type = get_tcp_server_response(mmst)) != expect_type) {
  349. av_log(NULL, AV_LOG_ERROR,
  350. "Corrupt stream (unexpected packet type 0x%x, expected 0x%x)\n",
  351. type, expect_type);
  352. return AVERROR_INVALIDDATA;
  353. } else {
  354. return 0;
  355. }
  356. }
  357. static int send_media_header_request(MMSTContext *mmst)
  358. {
  359. MMSContext *mms = &mmst->mms;
  360. start_command_packet(mmst, CS_PKT_MEDIA_HEADER_REQUEST);
  361. insert_command_prefixes(mms, 1, 0);
  362. bytestream_put_le32(&mms->write_out_ptr, 0);
  363. bytestream_put_le32(&mms->write_out_ptr, 0x00800000);
  364. bytestream_put_le32(&mms->write_out_ptr, 0xffffffff);
  365. bytestream_put_le32(&mms->write_out_ptr, 0);
  366. bytestream_put_le32(&mms->write_out_ptr, 0);
  367. bytestream_put_le32(&mms->write_out_ptr, 0);
  368. // the media preroll value in milliseconds?
  369. bytestream_put_le32(&mms->write_out_ptr, 0);
  370. bytestream_put_le32(&mms->write_out_ptr, 0x40AC2000);
  371. bytestream_put_le32(&mms->write_out_ptr, 2);
  372. bytestream_put_le32(&mms->write_out_ptr, 0);
  373. return send_command_packet(mmst);
  374. }
  375. /** Send the initial handshake. */
  376. static int send_startup_packet(MMSTContext *mmst)
  377. {
  378. char data_string[256];
  379. MMSContext *mms = &mmst->mms;
  380. // SubscriberName is defined in MS specification linked below.
  381. // The guid value can be any valid value.
  382. // http://download.microsoft.com/
  383. // download/9/5/E/95EF66AF-9026-4BB0-A41D-A4F81802D92C/%5BMS-WMSP%5D.pdf
  384. snprintf(data_string, sizeof(data_string),
  385. "NSPlayer/7.0.0.1956; {%s}; Host: %s",
  386. "7E667F5D-A661-495E-A512-F55686DDA178", mmst->host);
  387. start_command_packet(mmst, CS_PKT_INITIAL);
  388. insert_command_prefixes(mms, 0, 0x0004000b);
  389. bytestream_put_le32(&mms->write_out_ptr, 0x0003001c);
  390. mms_put_utf16(mms, data_string);
  391. return send_command_packet(mmst);
  392. }
  393. /** Send MMST stream selection command based on the AVStream->discard values. */
  394. static int send_stream_selection_request(MMSTContext *mmst)
  395. {
  396. int i;
  397. MMSContext *mms = &mmst->mms;
  398. // send the streams we want back...
  399. start_command_packet(mmst, CS_PKT_STREAM_ID_REQUEST);
  400. bytestream_put_le32(&mms->write_out_ptr, mms->stream_num); // stream nums
  401. for(i= 0; i<mms->stream_num; i++) {
  402. bytestream_put_le16(&mms->write_out_ptr, 0xffff); // flags
  403. bytestream_put_le16(&mms->write_out_ptr, mms->streams[i].id); // stream id
  404. bytestream_put_le16(&mms->write_out_ptr, 0); // selection
  405. }
  406. return send_command_packet(mmst);
  407. }
  408. static int send_close_packet(MMSTContext *mmst)
  409. {
  410. start_command_packet(mmst, CS_PKT_STREAM_CLOSE);
  411. insert_command_prefixes(&mmst->mms, 1, 1);
  412. return send_command_packet(mmst);
  413. }
  414. /** Close the MMSH/MMST connection */
  415. static int mms_close(URLContext *h)
  416. {
  417. MMSTContext *mmst = (MMSTContext *)h->priv_data;
  418. MMSContext *mms = &mmst->mms;
  419. if(mms->mms_hd) {
  420. send_close_packet(mmst);
  421. url_close(mms->mms_hd);
  422. }
  423. /* free all separately allocated pointers in mms */
  424. av_free(mms->streams);
  425. av_free(mms->asf_header);
  426. av_freep(&h->priv_data);
  427. return 0;
  428. }
  429. static int send_media_packet_request(MMSTContext *mmst)
  430. {
  431. MMSContext *mms = &mmst->mms;
  432. start_command_packet(mmst, CS_PKT_START_FROM_PKT_ID);
  433. insert_command_prefixes(mms, 1, 0x0001FFFF);
  434. bytestream_put_le64(&mms->write_out_ptr, 0); // seek timestamp
  435. bytestream_put_le32(&mms->write_out_ptr, 0xffffffff); // unknown
  436. bytestream_put_le32(&mms->write_out_ptr, 0xffffffff); // packet offset
  437. bytestream_put_byte(&mms->write_out_ptr, 0xff); // max stream time limit
  438. bytestream_put_byte(&mms->write_out_ptr, 0xff); // max stream time limit
  439. bytestream_put_byte(&mms->write_out_ptr, 0xff); // max stream time limit
  440. bytestream_put_byte(&mms->write_out_ptr, 0x00); // stream time limit flag
  441. mmst->packet_id++; // new packet_id
  442. bytestream_put_le32(&mms->write_out_ptr, mmst->packet_id);
  443. return send_command_packet(mmst);
  444. }
  445. static void clear_stream_buffers(MMSContext *mms)
  446. {
  447. mms->remaining_in_len = 0;
  448. mms->read_in_ptr = mms->in_buffer;
  449. }
  450. static int mms_open(URLContext *h, const char *uri, int flags)
  451. {
  452. MMSTContext *mmst;
  453. MMSContext *mms;
  454. int port, err;
  455. char tcpname[256];
  456. h->is_streamed = 1;
  457. mmst = h->priv_data = av_mallocz(sizeof(MMSTContext));
  458. if (!h->priv_data)
  459. return AVERROR(ENOMEM);
  460. mms = &mmst->mms;
  461. // only for MMS over TCP, so set proto = NULL
  462. av_url_split(NULL, 0, NULL, 0,
  463. mmst->host, sizeof(mmst->host), &port, mmst->path,
  464. sizeof(mmst->path), uri);
  465. if(port<0)
  466. port = 1755; // defaut mms protocol port
  467. // establish tcp connection.
  468. ff_url_join(tcpname, sizeof(tcpname), "tcp", NULL, mmst->host, port, NULL);
  469. err = url_open(&mms->mms_hd, tcpname, URL_RDWR);
  470. if (err)
  471. goto fail;
  472. mmst->packet_id = 3; // default, initial value.
  473. mmst->header_packet_id = 2; // default, initial value.
  474. err = mms_safe_send_recv(mmst, send_startup_packet, SC_PKT_CLIENT_ACCEPTED);
  475. if (err)
  476. goto fail;
  477. err = mms_safe_send_recv(mmst, send_time_test_data, SC_PKT_TIMING_TEST_REPLY);
  478. if (err)
  479. goto fail;
  480. err = mms_safe_send_recv(mmst, send_protocol_select, SC_PKT_PROTOCOL_ACCEPTED);
  481. if (err)
  482. goto fail;
  483. err = mms_safe_send_recv(mmst, send_media_file_request, SC_PKT_MEDIA_FILE_DETAILS);
  484. if (err)
  485. goto fail;
  486. err = mms_safe_send_recv(mmst, send_media_header_request, SC_PKT_HEADER_REQUEST_ACCEPTED);
  487. if (err)
  488. goto fail;
  489. err = mms_safe_send_recv(mmst, NULL, SC_PKT_ASF_HEADER);
  490. if (err)
  491. goto fail;
  492. if((mmst->incoming_flags != 0X08) && (mmst->incoming_flags != 0X0C)) {
  493. av_log(NULL, AV_LOG_ERROR,
  494. "The server does not support MMST (try MMSH or RTSP)\n");
  495. err = AVERROR_NOFMT;
  496. goto fail;
  497. }
  498. err = ff_mms_asf_header_parser(mms);
  499. if (err) {
  500. av_dlog(NULL, "asf header parsed failed!\n");
  501. goto fail;
  502. }
  503. mms->header_parsed = 1;
  504. if (!mms->asf_packet_len || !mms->stream_num)
  505. goto fail;
  506. clear_stream_buffers(mms);
  507. err = mms_safe_send_recv(mmst, send_stream_selection_request, SC_PKT_STREAM_ID_ACCEPTED);
  508. if (err)
  509. goto fail;
  510. // send media packet request
  511. err = mms_safe_send_recv(mmst, send_media_packet_request, SC_PKT_MEDIA_PKT_FOLLOWS);
  512. if (err) {
  513. goto fail;
  514. }
  515. av_dlog(NULL, "Leaving open (success)\n");
  516. return 0;
  517. fail:
  518. mms_close(h);
  519. av_dlog(NULL, "Leaving open (failure: %d)\n", err);
  520. return err;
  521. }
  522. /** Read ASF data through the protocol. */
  523. static int mms_read(URLContext *h, uint8_t *buf, int size)
  524. {
  525. /* TODO: see tcp.c:tcp_read() about a possible timeout scheme */
  526. MMSTContext *mmst = h->priv_data;
  527. MMSContext *mms = &mmst->mms;
  528. int result = 0;
  529. do {
  530. if(mms->asf_header_read_size < mms->asf_header_size) {
  531. /* Read from ASF header buffer */
  532. result = ff_mms_read_header(mms, buf, size);
  533. } else if(mms->remaining_in_len) {
  534. /* Read remaining packet data to buffer.
  535. * the result can not be zero because remaining_in_len is positive.*/
  536. result = ff_mms_read_data(mms, buf, size);
  537. } else {
  538. /* Read from network */
  539. int err = mms_safe_send_recv(mmst, NULL, SC_PKT_ASF_MEDIA);
  540. if (err == 0) {
  541. if(mms->remaining_in_len>mms->asf_packet_len) {
  542. av_log(NULL, AV_LOG_ERROR,
  543. "Incoming pktlen %d is larger than ASF pktsize %d\n",
  544. mms->remaining_in_len, mms->asf_packet_len);
  545. result= AVERROR_IO;
  546. } else {
  547. // copy the data to the packet buffer.
  548. result = ff_mms_read_data(mms, buf, size);
  549. if (result == 0) {
  550. av_dlog(NULL, "read asf media paket size is zero!\n");
  551. break;
  552. }
  553. }
  554. } else {
  555. av_dlog(NULL, "read packet error!\n");
  556. break;
  557. }
  558. }
  559. } while(!result); // only return one packet.
  560. return result;
  561. }
  562. URLProtocol ff_mmst_protocol = {
  563. "mmst",
  564. mms_open,
  565. mms_read,
  566. NULL, // write
  567. NULL, // seek
  568. mms_close,
  569. };