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

  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); 

你可能感兴趣的:(ffmepg 指定RTSP网络连接模式UDP还是TCP)