summaryrefslogtreecommitdiff
path: root/libavformat/rtsp.c
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2008-10-04 04:11:12 +0000
committerRonald S. Bultje <rsbultje@gmail.com>2008-10-04 04:11:12 +0000
commited0aacc76eccf2b523352f0c74107e2f6ba9cf93 (patch)
treec6d6eb117f212699a5545135927130a31e7a11e9 /libavformat/rtsp.c
parentdd990075d62a981283de008b43cea0556fa81959 (diff)
Rename RTP payload contexts to PayloadContext, suggested by Luca in
"RDT/Realmedia patches #2" thread on ML. Originally committed as revision 15540 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rtsp.c')
-rw-r--r--libavformat/rtsp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c
index 413aadde95..f6d985968c 100644
--- a/libavformat/rtsp.c
+++ b/libavformat/rtsp.c
@@ -92,7 +92,7 @@ typedef struct RTSPStream {
rtp_payload_data_t rtp_payload_data; /* rtp payload parsing infos from SDP */
RTPDynamicProtocolHandler *dynamic_handler; ///< Only valid if it's a dynamic protocol. (This is the handler structure)
- void *dynamic_protocol_context; ///< Only valid if it's a dynamic protocol. (This is any private data associated with the dynamic protocol)
+ PayloadContext *dynamic_protocol_context; ///< Only valid if it's a dynamic protocol. (This is any private data associated with the dynamic protocol)
} RTSPStream;
static int rtsp_read_play(AVFormatContext *s);