diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2008-10-04 04:11:12 +0000 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2008-10-04 04:11:12 +0000 |
commit | ed0aacc76eccf2b523352f0c74107e2f6ba9cf93 (patch) | |
tree | c6d6eb117f212699a5545135927130a31e7a11e9 /libavformat/rtsp.c | |
parent | dd990075d62a981283de008b43cea0556fa81959 (diff) | |
download | ffmpeg-streaming-ed0aacc76eccf2b523352f0c74107e2f6ba9cf93.zip ffmpeg-streaming-ed0aacc76eccf2b523352f0c74107e2f6ba9cf93.tar.gz |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index 413aadd..f6d9859 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); |