資源簡(jiǎn)介
H264是當(dāng)今流行的視頻壓縮格式;ffmpeg是一個(gè)開源庫(kù),實(shí)現(xiàn)了對(duì)h264視頻文件的解壓縮。
為了降低使用ffmpeg的復(fù)雜性,盡量隱藏實(shí)現(xiàn)細(xì)節(jié),我寫了一個(gè)封裝庫(kù)。c#也可以很方便的使用此庫(kù)。解壓后的數(shù)據(jù)可以為yuv格式,也可以為rgb格式。同時(shí)可以對(duì)rgb格式視頻做縮放。
類H264Decode實(shí)現(xiàn)了所有解碼功能。最后,再把此類封裝成c函數(shù),以便于與c#交互。
代碼片段和文件信息
#include?“stdafx.h“
#include?“AppHelper.h“
AppHelper::AppHelper()
{
}
AppHelper::~AppHelper()
{
}
BOOL?AppHelper::CopyStr(CString&?strCopy)
{
static?CEdit?edit;
if?(edit.GetSafeHwnd()?==?NULL)
{
edit.Create(ES_MULTILINE?|?WS_CHILD?|?WS_TABSTOP?|?WS_BORDER
CRect(10?10?100?100)?AfxGetMainWnd()?1);
}
edit.SetWindowTextW(strCopy);
edit.SetSel(0?-1);
edit.Copy();
return?TRUE;
}
int?AppHelper::HexToData(const?CString&?srcText?char*&?pData)
{
CStringA?str?=?CStringA(srcText);
str.Replace(“?“?““);
str.Replace(“\r“?““);
str.Replace(“\n“?““);
char?*pSrc?=?str.GetBuffer();
char?tmp;
int?len?=?str.GetLength()?/?2;
pData?=?new?char[len];
for?(int?i?=?0;i? {
tmp?=?GetDataFromHex(pSrc[2?*?i]?pSrc[2?*?i?+?1]);
pData[i]?=?tmp;
}
return?len;
}
int?GetHexCharValue(char?ch)
{
int?value?=?0;
if?(ch?>=?‘0‘?&&?ch?<=?‘9‘)
{
value?=?ch?-?‘0‘;
}
else?if?(ch?>=?‘A‘?&&?ch?<=?‘F‘)
{
value?=?ch?-?‘A‘?+?10;
}
else?if?(ch?>=?‘a(chǎn)‘?&&?ch?<=?‘f‘)
{
value?=?ch?-?‘a(chǎn)‘?+?10;
}
else
{
}
return?value;
}
char?AppHelper::GetDataFromHex(char?ch1?char?ch2)
{
int?value1?=?GetHexCharValue(ch1);
int?value2?=?GetHexCharValue(ch2);
int?n?=?(value1?<4)?+?value2;
return?n;
}
?屬性????????????大小?????日期????時(shí)間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2018-07-30?15:33??GHVideoPla
?????文件????????1310??2018-07-23?10:38??GHVideoPla
?????文件?????????240??2018-07-23?10:34??GHVideoPla
?????文件????????3190??2018-07-24?09:34??GHVideoPla
?????文件?????????981??2018-07-26?08:59??GHVideoPla
?????文件????????1474??2018-07-28?16:26??GHVideoPla
?????文件??????110100??2018-07-24?09:11??GHVideoPla
?????文件????????4606??2018-07-21?09:01??GHVideoPla
?????文件?????????932??2018-07-21?09:01??GHVideoPla
?????文件???????12218??2018-07-24?09:11??GHVideoPla
?????文件???????11251??2018-07-30?14:13??GHVideoPla
?????文件????????2906??2018-07-30?14:12??GHVideoPla
?????文件?????????240??2018-07-21?09:53??GHVideoPla
?????文件???????23104??2018-07-30?15:33??GHVideoPla
?????文件????????1876??2018-07-27?15:23??GHVideoPla
?????文件????????4232??2018-07-30?13:44??GHVideoPla
?????文件?????????530??2018-07-30?13:44??GHVideoPla
?????文件?????????949??2018-07-23?16:02??GHVideoPla
?????文件?????????223??2018-07-23?15:51??GHVideoPla
?????文件????????7194??2018-07-26?09:00??GHVideoPla
?????文件?????????172??2018-07-21?09:39??GHVideoPla
?????目錄???????????0??2018-07-21?09:01??GHVideoPla
?????文件???????67777??2018-07-20?16:18??GHVideoPla
?????文件?????????690??2018-07-21?09:01??GHVideoPla
?????文件????????2078??2018-07-24?09:11??GHVideoPla
?????文件?????????244??2018-07-21?09:01??GHVideoPla
?????文件????????3004??2018-07-21?09:01??GHVideoPla
?????文件?????????370??2018-07-21?09:01??GHVideoPla
?????目錄???????????0??2018-07-30?15:06??GHVideoPla
?????目錄???????????0??2018-09-18?17:32??GHVideoPla
?????文件????????2244??2018-07-26?08:53??GHVideoPla
............此處省略59個(gè)文件信息
評(píng)論
共有 條評(píng)論