ffmepg 指定RTSP网络连接模式UDP还是TCP

来源:互联网 发布:精子优化处理 好贵 编辑:程序博客网 时间:2024/06/01 15:13
  1. AVFormatContext *formatCtx = NULL;  
  2. formatCtx = avformat_alloc_context();  
  3.   
  4. AVDictionary* options = NULL;  
  5. av_dict_set(&options, "rtsp_transport""tcp", 0);  
  6.   
  7. avformat_open_input(&formatCtx, pszURLPath, NULL, &options) < 0);  


http://blog.csdn.net/hslinux/article/details/9232389