zoukankan      html  css  js  c++  java
  • ffmpeg取rtsp流时av_read_frame阻塞的解决办法

    方法一
    方法是设置超时参数

    AVFormatContext *pAVFormatContext = avformat_alloc_context();//申请一个AVFormatContext结构的内存,并进行简单初始化
        AVDictionary* options = NULL;
        av_dict_set(&options, "buffer_size", "102400", 0); //设置缓存大小,1080p可将值调大
        av_dict_set(&options, "rtsp_transport", "tcp", 0); //默认以udp方式打开,改为tcp
        av_dict_set(&options, "stimeout", "2000000", 0); //设置超时断开连接时间,单位微秒
        av_dict_set(&options, "max_delay", "500000", 0); //设置最大时延
    参考:ffmpeg播放RTSP的一点优化

    方法二
    注册回调函数,在回调函数中设置超时判断(这种方法我未成功)

    pFormatCtx = avformat_alloc_context();
        pFormatCtx->interrupt_callback.callback = interrupt_cb;--------注册回调函数
        pFormatCtx->interrupt_callback.opaque = pFormatCtx;
        AVDictionary* options = NULL;
        av_dict_set(&options, "rtsp_transport", "tcp", 0);
        
        //核心是超时返回1,正常等待返回0
        static int interrupt_cb(void *ctx)//这个回调函数应该是用了博主内部的一些函数和变量
        {
            // do something
            NSLog(@"%d",time_out);
            time_out++;
            if (time_out > 40) {
                NSLog(@"------%d", firsttimeplay);
                time_out=0;
                if (firsttimeplay) {
                    firsttimeplay=0;
                    NSLog(@"++++++++");
                    return 1;//这个就是超时的返回
                }
            }
            return 0;
        }
        //回调函数伪代码如下
        int interruptCallBack(void *ctx){
           //once your preferred time is out you can return 1 and exit from the loop
           if(timeout){
              //exit
              return 1;
            }
        
           //continue 
           return 0;
        }
    麻烦点的实现,另建立了一个监视线程,参考文献3

    参考:

    使用ffmpeg的av_read_frame,如何控制连接超时
    timeout on av_read_frame()
    FFmpeg长时间无响应的解决方法

  • 相关阅读:
    BZOJ-1034: [ZJOI2008]泡泡堂BNB (田忌赛马贪心)
    BZOJ-2190: [SDOI2008]仪仗队 (欧拉函数)
    BZOJ-1864: [Zjoi2006]三色二叉树 (julao都说简单的树形DP)
    BZOJ-2657: [Zjoi2012]旅游(journey) (树形DP求最长链)
    BZOJ-2241: [SDOI2011]打地鼠 (模拟+枚举)
    BZOJ-1207: [HNOI2004]打鼹鼠 (LIS类似DP)
    BZOJ-1821: [JSOI2010]Group 部落划分 Group (二分+并查集)
    BZOJ-1218: [HNOI2003]激光炸弹 (前缀和+模拟)
    [SinGuLaRiTy] ZKW线段树
    [SinGuLaRiTy] 字节大小
  • 原文地址:https://www.cnblogs.com/lidabo/p/15684896.html
Copyright © 2011-2022 走看看