亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

邵阳县| 壤塘县| 保定市| 封丘县| 沈阳市| 长岭县| 永平县| 鹤庆县| 商洛市| 眉山市| 凤冈县| 资兴市| 阿合奇县| 佛教| 综艺| 龙山县| 原阳县| 曲阳县| 勐海县| 普陀区| 工布江达县| 衡南县| 通州区| 仙居县| 华蓥市| 赫章县| 霍城县| 崇礼县| 南昌市| 团风县| 文山县| 札达县| 图片| 手游| 礼泉县| 西乡县| 宣威市| 崇信县| 裕民县| 枝江市| 宜昌市|