Hello, I am trying to open an SDP file to receive an RTP stream and I get this message:
[rtp @ 03928900] Protocol not on whitelist 'file'! Failed: cannot open input. avformat_open_input() fail: Invalid data found when processing input Normally if I were using ffplay on the console, I would add the option -protocol_whitelist file,udp,rtp and it would work fine. So I tried this: AVDictionary *d = NULL; av_dict_set(&d, "protocol_whitelist", "file, udp, rtp", 0); ret = avformat_open_input(&inFormatCtx, filename, NULL, &d); But the same message still pops up. Any ideas?
_______________________________________________ Libav-user mailing list [email protected] http://ffmpeg.org/mailman/listinfo/libav-user
