Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2010-02-22 18:46:56 +0300
committerMartin Storsjö <martin@martin.st>2010-02-22 18:46:56 +0300
commitfd450a51774bbf66ca67d2e9afdf8611a3ea4362 (patch)
tree21d3611ed962c96288c54b1548ffd1b5b79e7cc6 /libavformat/rtsp.h
parent1d6065ad089741626711853ee1ed07f5b439e5ad (diff)
Create AVFormatContext objects as private transport for output RTSP sessions
Originally committed as revision 21964 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtsp.h')
-rw-r--r--libavformat/rtsp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtsp.h b/libavformat/rtsp.h
index 6f441209ac..b115fdae31 100644
--- a/libavformat/rtsp.h
+++ b/libavformat/rtsp.h
@@ -281,7 +281,7 @@ typedef struct RTSPState {
*/
typedef struct RTSPStream {
URLContext *rtp_handle; /**< RTP stream handle (if UDP) */
- void *transport_priv; /**< RTP/RDT parse context */
+ void *transport_priv; /**< RTP/RDT parse context if input, RTP AVFormatContext if output */
/** corresponding stream index, if any. -1 if none (MPEG2TS case) */
int stream_index;