[FFmpeg-cvslog] rtsp: suppress a incompatible pointer types warning
Vittorio Giovara
git at videolan.org
Thu Dec 12 19:46:50 CET 2013
ffmpeg | branch: master | Vittorio Giovara <vittorio.giovara at gmail.com> | Tue Dec 10 22:48:19 2013 +0000| [46c0cbd5dc01196949105e49f2ded10aa85a6e39] | committer: Vittorio Giovara
rtsp: suppress a incompatible pointer types warning
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=46c0cbd5dc01196949105e49f2ded10aa85a6e39
---
libavformat/rtsp.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c
index 70f8e21..b95be46 100644
--- a/libavformat/rtsp.c
+++ b/libavformat/rtsp.c
@@ -726,8 +726,8 @@ int ff_rtsp_open_transport_ctx(AVFormatContext *s, RTSPStream *rtsp_st)
s->ctx_flags |= AVFMTCTX_NOHEADER;
if (s->oformat && CONFIG_RTSP_MUXER) {
- int ret = ff_rtp_chain_mux_open(&rtsp_st->transport_priv, s, st,
- rtsp_st->rtp_handle,
+ int ret = ff_rtp_chain_mux_open((AVFormatContext **)&rtsp_st->transport_priv,
+ s, st, rtsp_st->rtp_handle,
RTSP_TCP_MAX_PACKET_SIZE,
rtsp_st->stream_index);
/* Ownership of rtp_handle is passed to the rtp mux context */
More information about the ffmpeg-cvslog
mailing list