真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網站制作重慶分公司

FFmpegavformat_open_input函數(shù)剖析以及問題-創(chuàng)新互聯(lián)

函數(shù)調用邏輯
avformat_open_input
?????? init_input
??????????? av_probe_input_buffer2
??????????????? av_probe_input_format3
??????????????????????read_header

創(chuàng)新互聯(lián)建站堅信:善待客戶,將會成為終身客戶。我們能堅持多年,是因為我們一直可值得信賴。我們從不忽悠初訪客戶,我們用心做好本職工作,不忘初心,方得始終。10年網站建設經驗創(chuàng)新互聯(lián)建站是成都老牌網站營銷服務商,為您提供成都網站設計、網站制作、網站設計、H5網站設計、網站制作、品牌網站制作、成都微信小程序服務,給眾多知名企業(yè)提供過好品質的建站服務。

簡介
avformat_open_input函數(shù)初始化AVFormatContext結構體。其中在初始化AVIOContext結構體參數(shù)中調用init_input函數(shù),而它會默認調用av_probe_input_buffer2填充AVIOContext結構體參數(shù)。一般情況下,可以優(yōu)先調用av_probe_input_buffer函數(shù),填充AVIOContext結構體參數(shù),然后賦值給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的初始化,該結構體將會保存一個讀取網絡數(shù)據的函數(shù)入口,根據函數(shù)入口來分析數(shù)據流。avformat_open_input函數(shù)在目前的
測試結果是耗時1秒多,這個應該是一個優(yōu)化的方向
av_probe_input_buffer2主要是針對輸入輸出結構體AVIOContext的初始化,如果知道avformat_open_input的賦值內容,對各種協(xié)議的讀寫格式的探測,就可以優(yōu)化這一塊代碼。協(xié)議的探測分別有file協(xié)議,rtmp協(xié)議等等,目前在項目中只需要實現(xiàn)文件協(xié)議,而文件協(xié)議應該如何進行讀寫?
調用ffio_fdopen()函數(shù)創(chuàng)建AVIOContext()結構體并獲取URLContext結構體引用的資源(調用avio_alloc_context()實現(xiàn))

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

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

最終優(yōu)化方案
??? 沒有屏蔽avformat_open_input函數(shù),而是在調用之前指定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實際的用途是在下面打開實時流的時候,如果需要讀取數(shù)據,可以通過ReadStreamData函數(shù)獲取到幀的消息內容
而不用通過avformat_open_input函數(shù)的第二個參數(shù)傳遞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

另外有需要云服務器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。


名稱欄目:FFmpegavformat_open_input函數(shù)剖析以及問題-創(chuàng)新互聯(lián)
本文網址:http://weahome.cn/article/djgiic.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部