diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2009-02-05 22:34:55 +0000 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2009-02-05 22:34:55 +0000 |
commit | 0a861b6f8b899a11b5dfe06bd029646d37a564ef (patch) | |
tree | ac9401799cd28f57721c2b100bda0975ef0e64e3 /libavformat/rtsp.h | |
parent | f5b288902edaafc85a4b94a037382a0866dd2401 (diff) | |
download | ffmpeg-0a861b6f8b899a11b5dfe06bd029646d37a564ef.tar.gz |
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.
Originally committed as revision 17012 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtsp.h')
-rw-r--r-- | libavformat/rtsp.h | 4 |
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 */ |