rtsp: kill a pointer type warning (void **) vs. (AVFormatContext **)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
8d45c001a8
commit
0079232299
@ -617,7 +617,7 @@ int ff_rtsp_open_transport_ctx(AVFormatContext *s, RTSPStream *rtsp_st)
|
|||||||
s->ctx_flags |= AVFMTCTX_NOHEADER;
|
s->ctx_flags |= AVFMTCTX_NOHEADER;
|
||||||
|
|
||||||
if (s->oformat && CONFIG_RTSP_MUXER) {
|
if (s->oformat && CONFIG_RTSP_MUXER) {
|
||||||
int ret = ff_rtp_chain_mux_open(&rtsp_st->transport_priv, s, st,
|
int ret = ff_rtp_chain_mux_open((AVFormatContext **)&rtsp_st->transport_priv, s, st,
|
||||||
rtsp_st->rtp_handle,
|
rtsp_st->rtp_handle,
|
||||||
RTSP_TCP_MAX_PACKET_SIZE);
|
RTSP_TCP_MAX_PACKET_SIZE);
|
||||||
/* Ownership of rtp_handle is passed to the rtp mux context */
|
/* Ownership of rtp_handle is passed to the rtp mux context */
|
||||||
|
Loading…
Reference in New Issue
Block a user