91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

FFmpeg avformat_open_input函數剖析以及問題

發布時間:2020-03-30 14:46:26 來源:網絡 閱讀:1592 作者:fengyuzaitu 欄目:軟件技術

函數調用邏輯
avformat_open_input
?????? init_input
??????????? av_probe_input_buffer2
??????????????? av_probe_input_format3
??????????????????????read_header


簡介
avformat_open_input函數初始化AVFormatContext結構體。其中在初始化AVIOContext結構體參數中調用init_input函數,而它會默認調用av_probe_input_buffer2填充AVIOContext結構體參數。一般情況下,可以優先調用av_probe_input_buffer函數,填充AVIOContext結構體參數,然后賦值給AVFormatContext結構體中的AVIOContext字段
代碼
AVIOContext pIOContext= avio_alloc_context
AVInputFormat pInputFormat = NULL
av_probe_input_buffer(pIOContext, &pInputFormat, "", NULL, 0, 0)
AVFormatContext* pFormatContext = avformat_alloc_context();
pFormatContext->pb = pIOContext;
if (avformat_open_input(&FormatContext, "", pInputFormat, NULL) < 0)
根據av_probe_input_buffer會調用av_probe_input_buffer2,包裹了一層
簡化代碼如下
AVFormatContext* pFormatContext = avformat_alloc_context();
if (avformat_open_input(&FormatContext, "", pInputFormat, NULL) < 0)
根據實際的測試,關鍵的地方是AVIOContext的初始化,該結構體將會保存一個讀取網絡數據的函數入口,根據函數入口來分析數據流。avformat_open_input函數在目前的
測試結果是耗時1秒多,這個應該是一個優化的方向
av_probe_input_buffer2主要是針對輸入輸出結構體AVIOContext的初始化,如果知道avformat_open_input的賦值內容,對各種協議的讀寫格式的探測,就可以優化這一塊代碼。協議的探測分別有file協議,rtmp協議等等,目前在項目中只需要實現文件協議,而文件協議應該如何進行讀寫?
調用ffio_fdopen()函數創建AVIOContext()結構體并獲取URLContext結構體引用的資源(調用avio_alloc_context()實現)


問題
??? avformat_open_input函數探測ES流開銷是150毫秒,探測PS流開銷是500毫秒。avformat_open_input函數里面已經實現了av_probe_input_buffer函數的調用,去探測AVInputFormat結構體的相關變量。所以在avformat_open_input函數之前,調用av_probe_input_buffer函數之后,就不會去探測AVInputFormat結構體

優化方向
??? 嘗試屏蔽avformat_open_input函數,直接指定碼流的輸入格式pInputFormat,代碼如下:
??????? pInputFormat = av_find_input_format("h364");
??????? pFormatCtx->iformat = pInputFormat;
如果這個時候屏蔽掉avformat_open_input,圖像是條帶狀的,按照參考文獻的說法,該avformat_open_input
函數就是為了探測AVInputFormat結構體的相關變量

最終優化方案
??? 沒有屏蔽avformat_open_input函數,而是在調用之前指定AVInputFormat的碼流輸入格式
代碼
??? AVInputFormat* pInputFormat = NULL;
??? AVFormatContext* pFormatContext = NULL;
??? pFormatContext = avformat_alloc_context();
??? pInputFormat = av_find_input_format("h364");
??? if (avformat_open_input(&pFormatContext, "", InputFormat, NULL) < 0)
??? {
??????? av_free(...);
??????? avformat_free_context(...);
??????? fprintf(stdout, "open stream failed!\n");
??? }
??? else
??? {
??????? fprintf(stdout, "open stream success!\n");
??? }


筆記
m_pVideoc->io_ctx = avio_alloc_context(m_pAvioBuf, BUF_SIZE, 0, this, ReadStreamData, NULL, NULL);
if (avformat_open_input(&pFormatCtx, "", piFmt, NULL) < 0)
上面的ReadStreamData實際的用途是在下面打開實時流的時候,如果需要讀取數據,可以通過ReadStreamData函數獲取到幀的消息內容
而不用通過avformat_open_input函數的第二個參數傳遞url

參考
http://blog.csdn.net/leo2007608/article/details/53421528
http://blog.csdn.net/leixiaohua1020/article/details/39759163
http://blog.csdn.net/leixiaohua1020/article/details/44064715


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

含山县| 克东县| 海城市| 龙泉市| 镇赉县| 马鞍山市| 马边| 东乡县| 静海县| 潢川县| 高邑县| 凉城县| 新乡市| 永登县| 仪征市| 连平县| 仁寿县| 镇宁| 湾仔区| 丰县| 宁波市| 兖州市| 昭觉县| 开江县| 竹山县| 锡林浩特市| 肥西县| 古交市| 房产| 涪陵区| 米易县| 汤原县| 双鸭山市| 米脂县| 烟台市| 库伦旗| 彭山县| 南汇区| 南漳县| 盐池县| 绥滨县|