comparison rtsp.h @ 4744:51899c07a4f1 libavformat

Add RTP/ASF header parsing, which is part of the SDP of these streams. See patch discussion in "[PATCH] RTSP-MS 10/15: ASF header parsing" thread.
author rbultje
date Tue, 17 Mar 2009 12:34:57 +0000
parents e1a5b4f5b9be
children 2e0ea6f96564
comparison
equal deleted inserted replaced
4743:5c65daa1c678 4744:51899c07a4f1
221 /** the last value of the "SET_PARAMETER Subscribe:" RTSP command. 221 /** the last value of the "SET_PARAMETER Subscribe:" RTSP command.
222 * this is used to send the same "Unsubscribe:" if stream setup changed, 222 * this is used to send the same "Unsubscribe:" if stream setup changed,
223 * before sending a new "Subscribe:" command. */ 223 * before sending a new "Subscribe:" command. */
224 char last_subscription[1024]; 224 char last_subscription[1024];
225 //@} 225 //@}
226
227 /** The following are used for RTP/ASF streams */
228 //@{
229 /** ASF demuxer context for the embedded ASF stream from WMS servers */
230 AVFormatContext *asf_ctx;
231 //@}
226 } RTSPState; 232 } RTSPState;
227 233
228 /** 234 /**
229 * Describes a single stream, as identified by a single m= line block in the 235 * Describes a single stream, as identified by a single m= line block in the
230 * SDP content. In the case of RDT, one RTSPStream can represent multiple 236 * SDP content. In the case of RDT, one RTSPStream can represent multiple