annotate mmst.c @ 6317:c166e5ff20b9 libavformat

Use inverse error branches, i.e. instead of if(something){success} else {error}, use if(!something) {return error;} success;, which needs less indenting.
author rbultje
date Mon, 26 Jul 2010 22:22:20 +0000
parents 270f6c8aeac5
children 1c7e9dfdefe3
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6053
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
1 /*
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
2 * MMS protocol over TCP
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
3 * Copyright (c) 2006,2007 Ryan Martell
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
4 * Copyright (c) 2007 Björn Axelsson
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
5 * Copyright (c) 2010 Zhentan Feng <spyfeng at gmail dot com>
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
6 *
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
7 * This file is part of FFmpeg.
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
8 *
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
9 * FFmpeg is free software; you can redistribute it and/or
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
10 * modify it under the terms of the GNU Lesser General Public
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
11 * License as published by the Free Software Foundation; either
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
12 * version 2.1 of the License, or (at your option) any later version.
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
13 *
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
14 * FFmpeg is distributed in the hope that it will be useful,
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
17 * Lesser General Public License for more details.
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
18 *
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
19 * You should have received a copy of the GNU Lesser General Public
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
20 * License along with FFmpeg; if not, write to the Free Software
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
22 */
6293
130d730d1c5e Explicitely set the size of the "ff_asf_head1_guid" header chunk, this is
rbultje
parents: 6292
diff changeset
23
130d730d1c5e Explicitely set the size of the "ff_asf_head1_guid" header chunk, this is
rbultje
parents: 6292
diff changeset
24 /* References
130d730d1c5e Explicitely set the size of the "ff_asf_head1_guid" header chunk, this is
rbultje
parents: 6292
diff changeset
25 * MMS protocol specification:
130d730d1c5e Explicitely set the size of the "ff_asf_head1_guid" header chunk, this is
rbultje
parents: 6292
diff changeset
26 * [1]http://msdn.microsoft.com/en-us/library/cc234711(PROT.10).aspx
130d730d1c5e Explicitely set the size of the "ff_asf_head1_guid" header chunk, this is
rbultje
parents: 6292
diff changeset
27 * ASF specification. Revision 01.20.03.
130d730d1c5e Explicitely set the size of the "ff_asf_head1_guid" header chunk, this is
rbultje
parents: 6292
diff changeset
28 * [2]http://msdn.microsoft.com/en-us/library/bb643323.aspx
130d730d1c5e Explicitely set the size of the "ff_asf_head1_guid" header chunk, this is
rbultje
parents: 6292
diff changeset
29 */
130d730d1c5e Explicitely set the size of the "ff_asf_head1_guid" header chunk, this is
rbultje
parents: 6292
diff changeset
30
6053
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
31 #include "avformat.h"
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
32 #include "internal.h"
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
33 #include "libavutil/intreadwrite.h"
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
34 #include "libavcodec/bytestream.h"
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
35 #include "network.h"
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
36 #include "asf.h"
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
37
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
38 #define LOCAL_ADDRESS 0xc0a80081 // FIXME get and use correct local ip address.
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
39 #define LOCAL_PORT 1037 // as above.
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
40 /** Client to server packet types. */
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
41 typedef enum {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
42 CS_PKT_INITIAL = 0x01,
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
43 CS_PKT_PROTOCOL_SELECT = 0x02,
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
44 CS_PKT_MEDIA_FILE_REQUEST = 0x05,
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
45 CS_PKT_START_FROM_PKT_ID = 0x07,
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
46 CS_PKT_STREAM_PAUSE = 0x09,
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
47 CS_PKT_STREAM_CLOSE = 0x0d,
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
48 CS_PKT_MEDIA_HEADER_REQUEST = 0x15,
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
49 CS_PKT_TIMING_DATA_REQUEST = 0x18,
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
50 CS_PKT_USER_PASSWORD = 0x1a,
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
51 CS_PKT_KEEPALIVE = 0x1b,
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
52 CS_PKT_STREAM_ID_REQUEST = 0x33,
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
53 } MMSCSPacketType;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
54
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
55 /** Server to client packet types. */
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
56 typedef enum {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
57 /** Control packets. */
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
58 /*@{*/
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
59 SC_PKT_CLIENT_ACCEPTED = 0x01,
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
60 SC_PKT_PROTOCOL_ACCEPTED = 0x02,
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
61 SC_PKT_PROTOCOL_FAILED = 0x03,
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
62 SC_PKT_MEDIA_PKT_FOLLOWS = 0x05,
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
63 SC_PKT_MEDIA_FILE_DETAILS = 0x06,
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
64 SC_PKT_HEADER_REQUEST_ACCEPTED = 0x11,
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
65 SC_PKT_TIMING_TEST_REPLY = 0x15,
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
66 SC_PKT_PASSWORD_REQUIRED = 0x1a,
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
67 SC_PKT_KEEPALIVE = 0x1b,
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
68 SC_PKT_STREAM_STOPPED = 0x1e,
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
69 SC_PKT_STREAM_CHANGING = 0x20,
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
70 SC_PKT_STREAM_ID_ACCEPTED = 0x21,
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
71 /*@}*/
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
72
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
73 /** Pseudo packets. */
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
74 /*@{*/
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
75 SC_PKT_CANCEL = -1,
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
76 SC_PKT_NO_DATA = -2,
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
77 /*@}*/
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
78
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
79 /** Data packets. */
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
80 /*@{*/
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
81 SC_PKT_ASF_HEADER = 0x010000,// make it bigger than 0xFF in case of
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
82 SC_PKT_ASF_MEDIA = 0x010001,// receiving false data packets.
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
83 /*@}*/
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
84 } MMSSCPacketType;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
85
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
86 typedef struct {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
87 int id;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
88 }MMSStream;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
89
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
90 typedef struct {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
91 int outgoing_packet_seq; ///< Outgoing packet sequence number.
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
92 char path[256]; ///< Path of the resource being asked for.
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
93 char host[128]; ///< Host of the resources.
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
94
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
95 URLContext *mms_hd; ///< TCP connection handle
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
96 MMSStream streams[MAX_STREAMS];
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
97
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
98 /** Buffer for outgoing packets. */
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
99 /*@{*/
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
100 uint8_t *write_out_ptr; ///< Pointer for writting the buffer.
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
101 uint8_t out_buffer[512]; ///< Buffer for outgoing packet.
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
102 /*@}*/
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
103
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
104 /** Buffer for incoming packets. */
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
105 /*@{*/
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
106 uint8_t in_buffer[8192]; ///< Buffer for incoming packets.
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
107 uint8_t *read_in_ptr; ///< Pointer for reading from incoming buffer.
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
108 int remaining_in_len; ///< Reading length from incoming buffer.
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
109 /*@}*/
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
110
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
111 int incoming_packet_seq; ///< Incoming packet sequence number.
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
112 int incoming_flags; ///< Incoming packet flags.
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
113
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
114 int packet_id; ///< Identifier for packets in the current stream.
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
115 unsigned int header_packet_id; ///< default is 2.
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
116
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
117 /** Internal handling of the ASF header */
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
118 /*@{*/
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
119 uint8_t *asf_header; ///< Stored ASF header.
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
120 int asf_header_size; ///< Size of stored ASF header.
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
121 int header_parsed; ///< The header has been received and parsed.
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
122 int asf_packet_len;
6294
43d0fb52419d Allow the ASF header to be transferred split over multiple packets, as some
rbultje
parents: 6293
diff changeset
123 int asf_header_read_size;
6053
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
124 /*@}*/
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
125
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
126 int stream_num; ///< stream numbers.
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
127 int is_playing;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
128 } MMSContext;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
129
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
130 /** Create MMST command packet header */
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
131 static void start_command_packet(MMSContext *mms, MMSCSPacketType packet_type)
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
132 {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
133 mms->write_out_ptr = mms->out_buffer;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
134
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
135 bytestream_put_le32(&mms->write_out_ptr, 1); // start sequence
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
136 bytestream_put_le32(&mms->write_out_ptr, 0xb00bface);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
137 bytestream_put_le32(&mms->write_out_ptr, 0); // Length starts from after the protocol type bytes
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
138 bytestream_put_le32(&mms->write_out_ptr, MKTAG('M','M','S',' '));
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
139 bytestream_put_le32(&mms->write_out_ptr, 0);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
140 bytestream_put_le32(&mms->write_out_ptr, mms->outgoing_packet_seq++);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
141 bytestream_put_le64(&mms->write_out_ptr, 0); // timestamp
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
142 bytestream_put_le32(&mms->write_out_ptr, 0);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
143 bytestream_put_le16(&mms->write_out_ptr, packet_type);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
144 bytestream_put_le16(&mms->write_out_ptr, 3); // direction to server
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
145 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
146
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
147 /** Add prefixes to MMST command packet. */
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
148 static void insert_command_prefixes(MMSContext *mms,
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
149 uint32_t prefix1, uint32_t prefix2)
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
150 {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
151 bytestream_put_le32(&mms->write_out_ptr, prefix1); // first prefix
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
152 bytestream_put_le32(&mms->write_out_ptr, prefix2); // second prefix
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
153 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
154
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
155 /** Send a prepared MMST command packet. */
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
156 static int send_command_packet(MMSContext *mms)
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
157 {
6292
54715a725139 Align outgoing messages to 8 bytes, this is required to interact with
rbultje
parents: 6291
diff changeset
158 int len= mms->write_out_ptr - mms->out_buffer;
54715a725139 Align outgoing messages to 8 bytes, this is required to interact with
rbultje
parents: 6291
diff changeset
159 int exact_length = (len + 7) & ~7;
6053
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
160 int first_length= exact_length - 16;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
161 int len8= first_length/8;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
162 int write_result;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
163
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
164 // update packet length fields.
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
165 AV_WL32(mms->out_buffer + 8, first_length);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
166 AV_WL32(mms->out_buffer + 16, len8);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
167 AV_WL32(mms->out_buffer + 32, len8-2);
6292
54715a725139 Align outgoing messages to 8 bytes, this is required to interact with
rbultje
parents: 6291
diff changeset
168 memset(mms->write_out_ptr, 0, exact_length - len);
6053
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
169
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
170 // write it out.
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
171 write_result= url_write(mms->mms_hd, mms->out_buffer, exact_length);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
172 if(write_result != exact_length) {
6316
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
173 av_log(NULL, AV_LOG_ERROR,
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
174 "Failed to write data of length %d: %d (%s)\n",
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
175 exact_length, write_result,
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
176 write_result < 0 ? strerror(write_result) :
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
177 "The server closed the connection");
6053
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
178 return AVERROR_IO;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
179 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
180
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
181 return 0;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
182 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
183
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
184 static void mms_put_utf16(MMSContext *mms, uint8_t *src)
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
185 {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
186 ByteIOContext bic;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
187 int size = mms->write_out_ptr - mms->out_buffer;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
188 int len;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
189 init_put_byte(&bic, mms->write_out_ptr,
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
190 sizeof(mms->out_buffer) - size, 1, NULL, NULL, NULL, NULL);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
191
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
192 len = ff_put_str16_nolen(&bic, src);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
193 mms->write_out_ptr += len;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
194 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
195
6289
fb720b9d8ee1 Send a time test to the server, as the spec recommends.
rbultje
parents: 6182
diff changeset
196 static int send_time_test_data(MMSContext *mms)
fb720b9d8ee1 Send a time test to the server, as the spec recommends.
rbultje
parents: 6182
diff changeset
197 {
fb720b9d8ee1 Send a time test to the server, as the spec recommends.
rbultje
parents: 6182
diff changeset
198 start_command_packet(mms, CS_PKT_TIMING_DATA_REQUEST);
fb720b9d8ee1 Send a time test to the server, as the spec recommends.
rbultje
parents: 6182
diff changeset
199 insert_command_prefixes(mms, 0xf0f0f0f1, 0x0004000b);
fb720b9d8ee1 Send a time test to the server, as the spec recommends.
rbultje
parents: 6182
diff changeset
200 return send_command_packet(mms);
fb720b9d8ee1 Send a time test to the server, as the spec recommends.
rbultje
parents: 6182
diff changeset
201 }
fb720b9d8ee1 Send a time test to the server, as the spec recommends.
rbultje
parents: 6182
diff changeset
202
6053
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
203 static int send_protocol_select(MMSContext *mms)
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
204 {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
205 char data_string[256];
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
206
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
207 start_command_packet(mms, CS_PKT_PROTOCOL_SELECT);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
208 insert_command_prefixes(mms, 0, 0xffffffff);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
209 bytestream_put_le32(&mms->write_out_ptr, 0); // maxFunnelBytes
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
210 bytestream_put_le32(&mms->write_out_ptr, 0x00989680); // maxbitRate
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
211 bytestream_put_le32(&mms->write_out_ptr, 2); // funnelMode
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
212 snprintf(data_string, sizeof(data_string), "\\\\%d.%d.%d.%d\\%s\\%d",
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
213 (LOCAL_ADDRESS>>24)&0xff,
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
214 (LOCAL_ADDRESS>>16)&0xff,
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
215 (LOCAL_ADDRESS>>8)&0xff,
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
216 LOCAL_ADDRESS&0xff,
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
217 "TCP", // or UDP
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
218 LOCAL_PORT);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
219
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
220 mms_put_utf16(mms, data_string);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
221 return send_command_packet(mms);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
222 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
223
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
224 static int send_media_file_request(MMSContext *mms)
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
225 {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
226 start_command_packet(mms, CS_PKT_MEDIA_FILE_REQUEST);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
227 insert_command_prefixes(mms, 1, 0xffffffff);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
228 bytestream_put_le32(&mms->write_out_ptr, 0);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
229 bytestream_put_le32(&mms->write_out_ptr, 0);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
230 mms_put_utf16(mms, mms->path + 1); // +1 for skip "/"
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
231
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
232 return send_command_packet(mms);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
233 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
234
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
235 static void handle_packet_stream_changing_type(MMSContext *mms)
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
236 {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
237 dprintf(NULL, "Stream changing!\n");
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
238
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
239 // 40 is the packet header size, 7 is the prefix size.
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
240 mms->header_packet_id= AV_RL32(mms->in_buffer + 40 + 7);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
241 dprintf(NULL, "Changed header prefix to 0x%x", mms->header_packet_id);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
242 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
243
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
244 static int send_keepalive_packet(MMSContext *mms)
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
245 {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
246 // respond to a keepalive with a keepalive...
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
247 start_command_packet(mms, CS_PKT_KEEPALIVE);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
248 insert_command_prefixes(mms, 1, 0x100FFFF);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
249 return send_command_packet(mms);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
250 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
251
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
252 /** Pad media packets smaller than max_packet_size and/or adjust read position
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
253 * after a seek. */
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
254 static void pad_media_packet(MMSContext *mms)
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
255 {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
256 if(mms->remaining_in_len<mms->asf_packet_len) {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
257 int padding_size = mms->asf_packet_len - mms->remaining_in_len;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
258 memset(mms->in_buffer + mms->remaining_in_len, 0, padding_size);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
259 mms->remaining_in_len += padding_size;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
260 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
261 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
262
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
263 /** Read incoming MMST media, header or command packet. */
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
264 static MMSSCPacketType get_tcp_server_response(MMSContext *mms)
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
265 {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
266 int read_result;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
267 MMSSCPacketType packet_type= -1;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
268
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
269 for(;;) {
6317
c166e5ff20b9 Use inverse error branches, i.e. instead of if(something){success} else {error},
rbultje
parents: 6316
diff changeset
270 read_result = url_read_complete(mms->mms_hd, mms->in_buffer, 8);
c166e5ff20b9 Use inverse error branches, i.e. instead of if(something){success} else {error},
rbultje
parents: 6316
diff changeset
271 if (read_result != 8) {
c166e5ff20b9 Use inverse error branches, i.e. instead of if(something){success} else {error},
rbultje
parents: 6316
diff changeset
272 if(read_result < 0) {
c166e5ff20b9 Use inverse error branches, i.e. instead of if(something){success} else {error},
rbultje
parents: 6316
diff changeset
273 av_log(NULL, AV_LOG_ERROR,
c166e5ff20b9 Use inverse error branches, i.e. instead of if(something){success} else {error},
rbultje
parents: 6316
diff changeset
274 "Error reading packet header: %d (%s)\n",
c166e5ff20b9 Use inverse error branches, i.e. instead of if(something){success} else {error},
rbultje
parents: 6316
diff changeset
275 read_result, strerror(read_result));
c166e5ff20b9 Use inverse error branches, i.e. instead of if(something){success} else {error},
rbultje
parents: 6316
diff changeset
276 packet_type = SC_PKT_CANCEL;
c166e5ff20b9 Use inverse error branches, i.e. instead of if(something){success} else {error},
rbultje
parents: 6316
diff changeset
277 } else {
c166e5ff20b9 Use inverse error branches, i.e. instead of if(something){success} else {error},
rbultje
parents: 6316
diff changeset
278 av_log(NULL, AV_LOG_ERROR,
c166e5ff20b9 Use inverse error branches, i.e. instead of if(something){success} else {error},
rbultje
parents: 6316
diff changeset
279 "The server closed the connection\n");
c166e5ff20b9 Use inverse error branches, i.e. instead of if(something){success} else {error},
rbultje
parents: 6316
diff changeset
280 packet_type = SC_PKT_NO_DATA;
c166e5ff20b9 Use inverse error branches, i.e. instead of if(something){success} else {error},
rbultje
parents: 6316
diff changeset
281 }
c166e5ff20b9 Use inverse error branches, i.e. instead of if(something){success} else {error},
rbultje
parents: 6316
diff changeset
282 return packet_type;
c166e5ff20b9 Use inverse error branches, i.e. instead of if(something){success} else {error},
rbultje
parents: 6316
diff changeset
283 }
c166e5ff20b9 Use inverse error branches, i.e. instead of if(something){success} else {error},
rbultje
parents: 6316
diff changeset
284
6053
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
285 // handle command packet.
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
286 if(AV_RL32(mms->in_buffer + 4)==0xb00bface) {
6317
c166e5ff20b9 Use inverse error branches, i.e. instead of if(something){success} else {error},
rbultje
parents: 6316
diff changeset
287 int length_remaining, hr;
c166e5ff20b9 Use inverse error branches, i.e. instead of if(something){success} else {error},
rbultje
parents: 6316
diff changeset
288
6053
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
289 mms->incoming_flags= mms->in_buffer[3];
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
290 read_result= url_read_complete(mms->mms_hd, mms->in_buffer+8, 4);
6317
c166e5ff20b9 Use inverse error branches, i.e. instead of if(something){success} else {error},
rbultje
parents: 6316
diff changeset
291 if(read_result != 4) {
c166e5ff20b9 Use inverse error branches, i.e. instead of if(something){success} else {error},
rbultje
parents: 6316
diff changeset
292 av_log(NULL, AV_LOG_ERROR,
c166e5ff20b9 Use inverse error branches, i.e. instead of if(something){success} else {error},
rbultje
parents: 6316
diff changeset
293 "Reading command packet length failed: %d (%s)\n",
c166e5ff20b9 Use inverse error branches, i.e. instead of if(something){success} else {error},
rbultje
parents: 6316
diff changeset
294 read_result,
c166e5ff20b9 Use inverse error branches, i.e. instead of if(something){success} else {error},
rbultje
parents: 6316
diff changeset
295 read_result < 0 ? strerror(read_result) :
c166e5ff20b9 Use inverse error branches, i.e. instead of if(something){success} else {error},
rbultje
parents: 6316
diff changeset
296 "The server closed the connection");
c166e5ff20b9 Use inverse error branches, i.e. instead of if(something){success} else {error},
rbultje
parents: 6316
diff changeset
297 return read_result < 0 ? read_result : AVERROR_IO;
c166e5ff20b9 Use inverse error branches, i.e. instead of if(something){success} else {error},
rbultje
parents: 6316
diff changeset
298 }
6053
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
299
6317
c166e5ff20b9 Use inverse error branches, i.e. instead of if(something){success} else {error},
rbultje
parents: 6316
diff changeset
300 length_remaining= AV_RL32(mms->in_buffer+8) + 4;
6053
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
301 dprintf(NULL, "Length remaining is %d\n", length_remaining);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
302 // read the rest of the packet.
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
303 if (length_remaining < 0
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
304 || length_remaining > sizeof(mms->in_buffer) - 12) {
6316
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
305 av_log(NULL, AV_LOG_ERROR,
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
306 "Incoming packet length %d exceeds bufsize %zu\n",
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
307 length_remaining, sizeof(mms->in_buffer) - 12);
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
308 return AVERROR_INVALIDDATA;
6053
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
309 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
310 read_result = url_read_complete(mms->mms_hd, mms->in_buffer + 12,
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
311 length_remaining) ;
6317
c166e5ff20b9 Use inverse error branches, i.e. instead of if(something){success} else {error},
rbultje
parents: 6316
diff changeset
312 if (read_result != length_remaining) {
6316
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
313 av_log(NULL, AV_LOG_ERROR,
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
314 "Reading pkt data (length=%d) failed: %d (%s)\n",
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
315 length_remaining, read_result,
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
316 read_result < 0 ? strerror(read_result) :
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
317 "The server closed the connection");
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
318 return read_result < 0 ? read_result : AVERROR_IO;
6053
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
319 }
6317
c166e5ff20b9 Use inverse error branches, i.e. instead of if(something){success} else {error},
rbultje
parents: 6316
diff changeset
320 packet_type= AV_RL16(mms->in_buffer+36);
6290
a1500faf3a7e Check the status code of each server responses, and fail if it indicates
rbultje
parents: 6289
diff changeset
321 hr = AV_RL32(mms->in_buffer + 40);
a1500faf3a7e Check the status code of each server responses, and fail if it indicates
rbultje
parents: 6289
diff changeset
322 if (hr) {
6316
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
323 av_log(NULL, AV_LOG_ERROR,
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
324 "Server sent an error status code: 0x%08x\n",
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
325 hr);
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
326 return AVERROR_UNKNOWN;
6290
a1500faf3a7e Check the status code of each server responses, and fail if it indicates
rbultje
parents: 6289
diff changeset
327 }
6053
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
328 } else {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
329 int length_remaining;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
330 int packet_id_type;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
331 int tmp;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
332
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
333 // note we cache the first 8 bytes,
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
334 // then fill up the buffer with the others
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
335 tmp = AV_RL16(mms->in_buffer + 6);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
336 length_remaining = (tmp - 8) & 0xffff;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
337 mms->incoming_packet_seq = AV_RL32(mms->in_buffer);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
338 packet_id_type = mms->in_buffer[4];
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
339 mms->incoming_flags = mms->in_buffer[5];
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
340
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
341 if (length_remaining < 0
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
342 || length_remaining > sizeof(mms->in_buffer) - 8) {
6316
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
343 av_log(NULL, AV_LOG_ERROR,
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
344 "Data length %d is invalid or too large (max=%zu)\n",
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
345 length_remaining, sizeof(mms->in_buffer));
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
346 return AVERROR_INVALIDDATA;
6053
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
347 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
348 mms->remaining_in_len = length_remaining;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
349 mms->read_in_ptr = mms->in_buffer;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
350 read_result= url_read_complete(mms->mms_hd, mms->in_buffer, length_remaining);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
351 if(read_result != length_remaining) {
6316
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
352 av_log(NULL, AV_LOG_ERROR,
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
353 "Failed to read packet data of size %d: %d (%s)\n",
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
354 length_remaining, read_result,
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
355 read_result < 0 ? strerror(read_result) :
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
356 "The server closed the connection");
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
357 return read_result < 0 ? read_result : AVERROR_IO;
6317
c166e5ff20b9 Use inverse error branches, i.e. instead of if(something){success} else {error},
rbultje
parents: 6316
diff changeset
358 }
c166e5ff20b9 Use inverse error branches, i.e. instead of if(something){success} else {error},
rbultje
parents: 6316
diff changeset
359
6053
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
360 // if we successfully read everything.
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
361 if(packet_id_type == mms->header_packet_id) {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
362 packet_type = SC_PKT_ASF_HEADER;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
363 // Store the asf header
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
364 if(!mms->header_parsed) {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
365 void *p = av_realloc(mms->asf_header,
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
366 mms->asf_header_size
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
367 + mms->remaining_in_len);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
368 if (!p) {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
369 av_freep(&mms->asf_header);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
370 return AVERROR(ENOMEM);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
371 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
372 mms->asf_header = p;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
373 memcpy(mms->asf_header + mms->asf_header_size,
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
374 mms->read_in_ptr,
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
375 mms->remaining_in_len);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
376 mms->asf_header_size += mms->remaining_in_len;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
377 }
6294
43d0fb52419d Allow the ASF header to be transferred split over multiple packets, as some
rbultje
parents: 6293
diff changeset
378 // 0x04 means asf header is sent in multiple packets.
43d0fb52419d Allow the ASF header to be transferred split over multiple packets, as some
rbultje
parents: 6293
diff changeset
379 if (mms->incoming_flags == 0x04)
43d0fb52419d Allow the ASF header to be transferred split over multiple packets, as some
rbultje
parents: 6293
diff changeset
380 continue;
6053
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
381 } else if(packet_id_type == mms->packet_id) {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
382 packet_type = SC_PKT_ASF_MEDIA;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
383 } else {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
384 dprintf(NULL, "packet id type %d is old.", packet_id_type);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
385 continue;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
386 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
387 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
388
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
389 // preprocess some packet type
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
390 if(packet_type == SC_PKT_KEEPALIVE) {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
391 send_keepalive_packet(mms);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
392 continue;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
393 } else if(packet_type == SC_PKT_STREAM_CHANGING) {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
394 handle_packet_stream_changing_type(mms);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
395 } else if(packet_type == SC_PKT_ASF_MEDIA) {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
396 pad_media_packet(mms);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
397 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
398 return packet_type;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
399 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
400 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
401
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
402 static int mms_safe_send_recv(MMSContext *mms,
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
403 int (*send_fun)(MMSContext *mms),
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
404 const MMSSCPacketType expect_type)
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
405 {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
406 MMSSCPacketType type;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
407 if(send_fun) {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
408 int ret = send_fun(mms);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
409 if (ret < 0) {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
410 dprintf(NULL, "Send Packet error before expecting recv packet %d\n", expect_type);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
411 return ret;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
412 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
413 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
414
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
415 if ((type = get_tcp_server_response(mms)) != expect_type) {
6316
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
416 av_log(NULL, AV_LOG_ERROR,
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
417 "Corrupt stream (unexpected packet type 0x%x, expected 0x%x)\n",
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
418 type, expect_type);
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
419 return AVERROR_INVALIDDATA;
6053
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
420 } else {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
421 return 0;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
422 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
423 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
424
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
425 static int send_media_header_request(MMSContext *mms)
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
426 {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
427 start_command_packet(mms, CS_PKT_MEDIA_HEADER_REQUEST);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
428 insert_command_prefixes(mms, 1, 0);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
429 bytestream_put_le32(&mms->write_out_ptr, 0);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
430 bytestream_put_le32(&mms->write_out_ptr, 0x00800000);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
431 bytestream_put_le32(&mms->write_out_ptr, 0xffffffff);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
432 bytestream_put_le32(&mms->write_out_ptr, 0);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
433 bytestream_put_le32(&mms->write_out_ptr, 0);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
434 bytestream_put_le32(&mms->write_out_ptr, 0);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
435
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
436 // the media preroll value in milliseconds?
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
437 bytestream_put_le32(&mms->write_out_ptr, 0);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
438 bytestream_put_le32(&mms->write_out_ptr, 0x40AC2000);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
439 bytestream_put_le32(&mms->write_out_ptr, 2);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
440 bytestream_put_le32(&mms->write_out_ptr, 0);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
441
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
442 return send_command_packet(mms);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
443 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
444
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
445 /** Send the initial handshake. */
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
446 static int send_startup_packet(MMSContext *mms)
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
447 {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
448 char data_string[256];
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
449 // SubscriberName is defined in MS specification linked below.
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
450 // The guid value can be any valid value.
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
451 // http://download.microsoft.com/
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
452 // download/9/5/E/95EF66AF-9026-4BB0-A41D-A4F81802D92C/%5BMS-WMSP%5D.pdf
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
453 snprintf(data_string, sizeof(data_string),
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
454 "NSPlayer/7.0.0.1956; {%s}; Host: %s",
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
455 "7E667F5D-A661-495E-A512-F55686DDA178", mms->host);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
456
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
457 start_command_packet(mms, CS_PKT_INITIAL);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
458 insert_command_prefixes(mms, 0, 0x0004000b);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
459 bytestream_put_le32(&mms->write_out_ptr, 0x0003001c);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
460 mms_put_utf16(mms, data_string);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
461 return send_command_packet(mms);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
462 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
463
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
464 static int asf_header_parser(MMSContext *mms)
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
465 {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
466 uint8_t *p = mms->asf_header;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
467 uint8_t *end;
6294
43d0fb52419d Allow the ASF header to be transferred split over multiple packets, as some
rbultje
parents: 6293
diff changeset
468 int flags, stream_id;
6053
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
469 mms->stream_num = 0;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
470
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
471 if (mms->asf_header_size < sizeof(ff_asf_guid) * 2 + 22 ||
6316
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
472 memcmp(p, ff_asf_header, sizeof(ff_asf_guid))) {
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
473 av_log(NULL, AV_LOG_ERROR,
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
474 "Corrupt stream (invalid ASF header, size=%d)\n",
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
475 mms->asf_header_size);
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
476 return AVERROR_INVALIDDATA;
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
477 }
6053
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
478
6294
43d0fb52419d Allow the ASF header to be transferred split over multiple packets, as some
rbultje
parents: 6293
diff changeset
479 end = mms->asf_header + mms->asf_header_size;
6053
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
480
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
481 p += sizeof(ff_asf_guid) + 14;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
482 while(end - p >= sizeof(ff_asf_guid) + 8) {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
483 uint64_t chunksize = AV_RL64(p + sizeof(ff_asf_guid));
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
484 if (!chunksize || chunksize > end - p) {
6316
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
485 av_log(NULL, AV_LOG_ERROR,
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
486 "Corrupt stream (header chunksize %"PRId64" is invalid)\n",
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
487 chunksize);
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
488 return AVERROR_INVALIDDATA;
6053
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
489 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
490 if (!memcmp(p, ff_asf_file_header, sizeof(ff_asf_guid))) {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
491 /* read packet size */
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
492 if (end - p > sizeof(ff_asf_guid) * 2 + 68) {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
493 mms->asf_packet_len = AV_RL32(p + sizeof(ff_asf_guid) * 2 + 64);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
494 if (mms->asf_packet_len <= 0 || mms->asf_packet_len > sizeof(mms->in_buffer)) {
6316
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
495 av_log(NULL, AV_LOG_ERROR,
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
496 "Corrupt stream (too large pkt_len %d)\n",
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
497 mms->asf_packet_len);
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
498 return AVERROR_INVALIDDATA;
6053
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
499 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
500 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
501 } else if (!memcmp(p, ff_asf_stream_header, sizeof(ff_asf_guid))) {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
502 flags = AV_RL16(p + sizeof(ff_asf_guid)*3 + 24);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
503 stream_id = flags & 0x7F;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
504 //The second condition is for checking CS_PKT_STREAM_ID_REQUEST packet size,
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
505 //we can calcuate the packet size by stream_num.
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
506 //Please see function send_stream_selection_request().
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
507 if (mms->stream_num < MAX_STREAMS &&
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
508 46 + mms->stream_num * 6 < sizeof(mms->out_buffer)) {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
509 mms->streams[mms->stream_num].id = stream_id;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
510 mms->stream_num++;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
511 } else {
6316
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
512 av_log(NULL, AV_LOG_ERROR,
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
513 "Corrupt stream (too many A/V streams)\n");
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
514 return AVERROR_INVALIDDATA;
6053
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
515 }
6293
130d730d1c5e Explicitely set the size of the "ff_asf_head1_guid" header chunk, this is
rbultje
parents: 6292
diff changeset
516 } else if (!memcmp(p, ff_asf_head1_guid, sizeof(ff_asf_guid))) {
130d730d1c5e Explicitely set the size of the "ff_asf_head1_guid" header chunk, this is
rbultje
parents: 6292
diff changeset
517 chunksize = 46; // see references [2] section 3.4. This should be set 46.
6053
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
518 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
519 p += chunksize;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
520 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
521
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
522 return 0;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
523 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
524
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
525 /** Send MMST stream selection command based on the AVStream->discard values. */
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
526 static int send_stream_selection_request(MMSContext *mms)
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
527 {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
528 int i;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
529
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
530 // send the streams we want back...
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
531 start_command_packet(mms, CS_PKT_STREAM_ID_REQUEST);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
532 bytestream_put_le32(&mms->write_out_ptr, mms->stream_num); // stream nums
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
533 for(i= 0; i<mms->stream_num; i++) {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
534 bytestream_put_le16(&mms->write_out_ptr, 0xffff); // flags
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
535 bytestream_put_le16(&mms->write_out_ptr, mms->streams[i].id); // stream id
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
536 bytestream_put_le16(&mms->write_out_ptr, 0); // selection
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
537 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
538 return send_command_packet(mms);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
539 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
540
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
541 static int read_data(MMSContext *mms, uint8_t *buf, const int buf_size)
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
542 {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
543 int read_size;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
544 read_size = FFMIN(buf_size, mms->remaining_in_len);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
545 memcpy(buf, mms->read_in_ptr, read_size);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
546 mms->remaining_in_len -= read_size;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
547 mms->read_in_ptr += read_size;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
548 return read_size;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
549 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
550
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
551 /** Read at most one media packet (or a whole header). */
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
552 static int read_mms_packet(MMSContext *mms, uint8_t *buf, int buf_size)
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
553 {
6294
43d0fb52419d Allow the ASF header to be transferred split over multiple packets, as some
rbultje
parents: 6293
diff changeset
554 int result = 0;
6053
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
555 int size_to_copy;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
556
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
557 do {
6294
43d0fb52419d Allow the ASF header to be transferred split over multiple packets, as some
rbultje
parents: 6293
diff changeset
558 if(mms->asf_header_read_size < mms->asf_header_size && !mms->is_playing) {
6053
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
559 /* Read from ASF header buffer */
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
560 size_to_copy= FFMIN(buf_size,
6294
43d0fb52419d Allow the ASF header to be transferred split over multiple packets, as some
rbultje
parents: 6293
diff changeset
561 mms->asf_header_size - mms->asf_header_read_size);
43d0fb52419d Allow the ASF header to be transferred split over multiple packets, as some
rbultje
parents: 6293
diff changeset
562 memcpy(buf, mms->asf_header + mms->asf_header_read_size, size_to_copy);
43d0fb52419d Allow the ASF header to be transferred split over multiple packets, as some
rbultje
parents: 6293
diff changeset
563 mms->asf_header_read_size += size_to_copy;
6053
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
564 result += size_to_copy;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
565 dprintf(NULL, "Copied %d bytes from stored header. left: %d\n",
6294
43d0fb52419d Allow the ASF header to be transferred split over multiple packets, as some
rbultje
parents: 6293
diff changeset
566 size_to_copy, mms->asf_header_size - mms->asf_header_read_size);
43d0fb52419d Allow the ASF header to be transferred split over multiple packets, as some
rbultje
parents: 6293
diff changeset
567 if (mms->asf_header_size == mms->asf_header_read_size) {
6053
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
568 av_freep(&mms->asf_header);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
569 mms->is_playing = 1;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
570 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
571 } else if(mms->remaining_in_len) {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
572 /* Read remaining packet data to buffer.
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
573 * the result can not be zero because remaining_in_len is positive.*/
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
574 result = read_data(mms, buf, buf_size);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
575 } else {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
576 /* Read from network */
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
577 int err = mms_safe_send_recv(mms, NULL, SC_PKT_ASF_MEDIA);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
578 if (err == 0) {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
579 if(mms->remaining_in_len>mms->asf_packet_len) {
6316
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
580 av_log(NULL, AV_LOG_ERROR,
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
581 "Incoming pktlen %d is larger than ASF pktsize %d\n",
270f6c8aeac5 Use av_log(.., AV_LOG_ERROR) instead of dprintf() for logging errors. This
rbultje
parents: 6294
diff changeset
582 mms->remaining_in_len, mms->asf_packet_len);
6053
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
583 result= AVERROR_IO;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
584 } else {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
585 // copy the data to the packet buffer.
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
586 result = read_data(mms, buf, buf_size);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
587 if (result == 0) {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
588 dprintf(NULL, "read asf media paket size is zero!\n");
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
589 break;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
590 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
591 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
592 } else {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
593 dprintf(NULL, "read packet error!\n");
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
594 break;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
595 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
596 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
597 } while(!result); // only return one packet.
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
598 return result;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
599 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
600
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
601 static int send_close_packet(MMSContext *mms)
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
602 {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
603 start_command_packet(mms, CS_PKT_STREAM_CLOSE);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
604 insert_command_prefixes(mms, 1, 1);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
605
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
606 return send_command_packet(mms);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
607 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
608
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
609 /** Close the MMSH/MMST connection */
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
610 static int mms_close(URLContext *h)
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
611 {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
612 MMSContext *mms = (MMSContext *)h->priv_data;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
613
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
614 if(mms->mms_hd) {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
615 send_close_packet(mms);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
616 url_close(mms->mms_hd);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
617 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
618
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
619 /* free all separately allocated pointers in mms */
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
620 av_free(mms->asf_header);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
621 av_freep(&h->priv_data);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
622
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
623 return 0;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
624 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
625
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
626 static int mms_open(URLContext *h, const char *uri, int flags)
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
627 {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
628 MMSContext *mms;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
629 int port, err;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
630 char tcpname[256];
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
631
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
632 h->is_streamed = 1;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
633 mms = h->priv_data = av_mallocz(sizeof(MMSContext));
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
634 if (!h->priv_data)
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
635 return AVERROR(ENOMEM);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
636
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
637 // only for MMS over TCP, so set proto = NULL
6182
4fc5e0e4e1cd Make ff_url_split() public
mru
parents: 6134
diff changeset
638 av_url_split(NULL, 0, NULL, 0,
6053
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
639 mms->host, sizeof(mms->host), &port, mms->path,
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
640 sizeof(mms->path), uri);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
641
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
642 if(port<0)
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
643 port = 1755; // defaut mms protocol port
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
644
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
645 // establish tcp connection.
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
646 ff_url_join(tcpname, sizeof(tcpname), "tcp", NULL, mms->host, port, NULL);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
647 err = url_open(&mms->mms_hd, tcpname, URL_RDWR);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
648 if (err)
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
649 goto fail;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
650
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
651 mms->packet_id = 3; // default, initial value.
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
652 mms->header_packet_id = 2; // default, initial value.
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
653 err = mms_safe_send_recv(mms, send_startup_packet, SC_PKT_CLIENT_ACCEPTED);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
654 if (err)
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
655 goto fail;
6289
fb720b9d8ee1 Send a time test to the server, as the spec recommends.
rbultje
parents: 6182
diff changeset
656 err = mms_safe_send_recv(mms, send_time_test_data, SC_PKT_TIMING_TEST_REPLY);
fb720b9d8ee1 Send a time test to the server, as the spec recommends.
rbultje
parents: 6182
diff changeset
657 if (err)
fb720b9d8ee1 Send a time test to the server, as the spec recommends.
rbultje
parents: 6182
diff changeset
658 goto fail;
6053
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
659 err = mms_safe_send_recv(mms, send_protocol_select, SC_PKT_PROTOCOL_ACCEPTED);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
660 if (err)
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
661 goto fail;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
662 err = mms_safe_send_recv(mms, send_media_file_request, SC_PKT_MEDIA_FILE_DETAILS);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
663 if (err)
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
664 goto fail;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
665 err = mms_safe_send_recv(mms, send_media_header_request, SC_PKT_HEADER_REQUEST_ACCEPTED);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
666 if (err)
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
667 goto fail;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
668 err = mms_safe_send_recv(mms, NULL, SC_PKT_ASF_HEADER);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
669 if (err)
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
670 goto fail;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
671 if((mms->incoming_flags != 0X08) && (mms->incoming_flags != 0X0C))
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
672 goto fail;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
673 err = asf_header_parser(mms);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
674 if (err) {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
675 dprintf(NULL, "asf header parsed failed!\n");
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
676 goto fail;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
677 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
678 mms->header_parsed = 1;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
679
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
680 if (!mms->asf_packet_len || !mms->stream_num)
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
681 goto fail;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
682
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
683 dprintf(NULL, "Leaving open (success)\n");
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
684 return 0;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
685 fail:
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
686 mms_close(h);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
687 dprintf(NULL, "Leaving open (failure: %d)\n", err);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
688 return err;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
689 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
690
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
691 static int send_media_packet_request(MMSContext *mms)
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
692 {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
693 start_command_packet(mms, CS_PKT_START_FROM_PKT_ID);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
694 insert_command_prefixes(mms, 1, 0x0001FFFF);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
695 bytestream_put_le64(&mms->write_out_ptr, 0); // seek timestamp
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
696 bytestream_put_le32(&mms->write_out_ptr, 0xffffffff); // unknown
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
697 bytestream_put_le32(&mms->write_out_ptr, 0xffffffff); // packet offset
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
698 bytestream_put_byte(&mms->write_out_ptr, 0xff); // max stream time limit
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
699 bytestream_put_byte(&mms->write_out_ptr, 0xff); // max stream time limit
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
700 bytestream_put_byte(&mms->write_out_ptr, 0xff); // max stream time limit
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
701 bytestream_put_byte(&mms->write_out_ptr, 0x00); // stream time limit flag
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
702
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
703 mms->packet_id++; // new packet_id
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
704 bytestream_put_le32(&mms->write_out_ptr, mms->packet_id);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
705 return send_command_packet(mms);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
706 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
707
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
708
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
709 static void clear_stream_buffers(MMSContext *mms)
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
710 {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
711 mms->remaining_in_len = 0;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
712 mms->read_in_ptr = mms->in_buffer;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
713 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
714
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
715 /** Read ASF data through the protocol. */
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
716 static int mms_read(URLContext *h, uint8_t *buf, int size)
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
717 {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
718 /* TODO: see tcp.c:tcp_read() about a possible timeout scheme */
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
719 MMSContext *mms = h->priv_data;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
720 int result = 0;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
721
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
722 /* Since we read the header at open(), this shouldn't be possible */
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
723 assert(mms->header_parsed);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
724
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
725 if (!mms->is_playing) {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
726 dprintf(NULL, "mms_read() before play().\n");
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
727 clear_stream_buffers(mms);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
728 result = mms_safe_send_recv(mms, send_stream_selection_request, SC_PKT_STREAM_ID_ACCEPTED);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
729 if (result)
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
730 return result;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
731 // send media packet request
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
732 result = mms_safe_send_recv(mms, send_media_packet_request, SC_PKT_MEDIA_PKT_FOLLOWS);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
733 if (result) {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
734 return result;
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
735 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
736 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
737 return read_mms_packet(mms, buf, size);
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
738 }
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
739
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
740 URLProtocol mmst_protocol = {
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
741 "mmst",
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
742 mms_open,
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
743 mms_read,
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
744 NULL, // write
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
745 NULL, // seek
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
746 mms_close,
1b6a5459ff73 MMS-over-TCP protocol support. Patch by Zhentan Feng <spyfeng gmail com>.
rbultje
parents:
diff changeset
747 };