On Thu, 14 Aug 2014 22:00:49 +0400
Dmitry Adjiev <[email protected]> wrote:

> This string doesn't work:
> av_opt_set_from_string(stream->rtp_ctx->priv_data, "rtsp_transport:udp",
> opts, ":", ":");
> 
> This string crashes:
> av_opt_set_from_string(stream->rtp_ctx->priv_data, "rtsp_transport:udp",
> opts, ":", NULL);
> 
> What I do wrong?

You need to pass it as entry in an AVDictionary to
avformat_open_input(). (Not very intuitive, I know.)
_______________________________________________
Libav-user mailing list
[email protected]
http://ffmpeg.org/mailman/listinfo/libav-user

Reply via email to