diff rtsp.h @ 4386:3dbd7fa2c2af libavformat

Rename "tx_ctx" and "cur_tx" variables to "transport_priv" and "cur_transport_priv", as discussed in the "[PATCH] rtsp.h: rename tx variables" thread.
author rbultje
date Thu, 05 Feb 2009 22:34:55 +0000
parents c535276fb3ff
children 80f21f72d7d6
line wrap: on
line diff
--- a/rtsp.h	Thu Feb 05 20:15:18 2009 +0000
+++ b/rtsp.h	Thu Feb 05 22:34:55 2009 +0000
@@ -104,7 +104,7 @@
     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 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 */