summaryrefslogtreecommitdiff
path: root/libavformat/rtsp.h
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/rtsp.h')
-rw-r--r--libavformat/rtsp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/rtsp.h b/libavformat/rtsp.h
index 83d0a39184..628f0e1808 100644
--- a/libavformat/rtsp.h
+++ b/libavformat/rtsp.h
@@ -104,7 +104,7 @@ typedef struct RTSPState {
enum RTSPLowerTransport lower_transport;
enum RTSPServerType server_type;
char last_reply[2048]; /* XXX: allocate ? */
- void *cur_tx;
+ void *cur_transport_priv;
int need_subscription;
enum AVDiscard real_setup_cache[MAX_STREAMS];
char last_subscription[1024];
@@ -112,7 +112,7 @@ typedef struct RTSPState {
typedef struct RTSPStream {
URLContext *rtp_handle; /* RTP stream handle */
- void *tx_ctx; /* RTP/RDT parse context */
+ void *transport_priv; /* RTP/RDT parse context */
int stream_index; /* corresponding stream index, if any. -1 if none (MPEG2TS case) */
int interleaved_min, interleaved_max; /* interleave ids, if TCP transport */