02 2014 档案
摘要:以下是我搜集的关于MPEG1/2的编解码相关的资料:(注:mpge帧内编码是基于jpeg编码的,所以请务必先理解jpeg的编解码原理。)1:Introduction to MPEG 2 Video Compression http://www.bretl.com/mpeghtml/mpeg2vc1.HTM2:Motion_compensation http://en.wikipedia.org/wiki/Motion_compensation3: A Beginners Guide for MPEG-2 Standard http://www.iem.thm.de/telekom-...
阅读全文
摘要:BOOL Is64BitOS(){ typedef VOID (WINAPI *LPFN_GetNativeSystemInfo)( __out LPSYSTEM_INFO lpSystemInfo ); LPFN_GetNativeSystemInfo fnGetNativeSystemInfo = (LPFN_GetNativeSystemInfo)GetProcAddres...
阅读全文
摘要:最近一个项目中碰到GetWindowText经常卡死的问题,这个项目有多个线程,检查代码发现发生死锁的是一个数据线程和一个UI线程。 示意图大致如下(data thread和UI thread在同一个进程中): 1,data thread Lock(); 2,data thread GetWindowText 会SendMessage(WM_GETTEXT) 给 UI window; ...
阅读全文
摘要:Tips: VC++在新建一个.asm文件后必须重新导入project中才能进行编译。 下面是一个汇编与C++相互调用的例子: Main.cpp #include #include #include class CTest{public: void Init() { m_nSize = 100; m_pContent = new char[m_n...
阅读全文