代码改变世界

[转]将H264与AAC打包Ipad可播放的TS流的总结

2014-10-10 15:54 by Scott Guthrie Liu, 753 阅读, 0 推荐, 收藏, 编辑
摘要:http://www.cnblogs.com/wangqiguo/archive/2013/03/29/2987949.html由于要在crtmpserver中实现Http Live Streaming ,本人花了接近3个星期的时间,研究将H264与AAC打包为TS流并能在Ipad上通过HTML5播... 阅读全文

x264 vs2013 yasm1.3.0 debug, x264 在vs2013下调试

2014-09-20 21:56 by Scott Guthrie Liu, 1734 阅读, 0 推荐, 收藏, 编辑
摘要:1. 来源(可以不用看)http://siliconandlithium.blogspot.com/2014/03/building-x264-on-windows-with-visual.html2.https://github.com/ShiftMediaCenter/x264直接下载改过的带v... 阅读全文

win8 Win7 禁用 directx 的正确方法win7 disable directx accelerate

2014-03-29 14:00 by Scott Guthrie Liu, 612 阅读, 0 推荐, 收藏, 编辑
摘要:http://superuser.com/questions/495303/how-do-i-disable-directdraw-and-direct3d-acceleration-on-windows-81.Disable Aero(Mostly not necessary but do it for now)Disable aero2.Download directx 9.0c control panel fromhere3.Extract and run"directx.cpl"as administrator.4.Goto Direct3D and DirectD 阅读全文

[转]10 More Visual Studio Debugging Tips for Native Development

2013-08-18 10:20 by Scott Guthrie Liu, 266 阅读, 0 推荐, 收藏, 编辑
摘要:http://www.codeproject.com/Articles/469416/10-More-Visual-Studio-Debugging-Tips-for-Native-DeI have recently run onto this article by Ivan Shcherbakov called10+ powerful debugging tricks with Visual Studio. Though the article presents some rather basic tips of debugging with Visual Studio, there are 阅读全文

Cracking The Coding Interview 5th 完整版

2013-07-06 01:14 by Scott Guthrie Liu, 1296 阅读, 0 推荐, 收藏, 编辑
摘要:扫描版 510页 磁力链接http://thepiratebay.sx/torrent/8284452/官方solution: javahttp://www.crackingthecodinginterview.com/content/download-solutionsc++ 解答:http://hawstein.com/posts/ctci-solutions-contents.html 阅读全文

获取设备管理器中显卡

2013-05-14 02:59 by Scott Guthrie Liu, 339 阅读, 0 推荐, 收藏, 编辑
摘要:#include <stdio.h>#include <windows.h>#include <Setupapi.h>#include <devguid.h>#include "tchar.h"#pragma comment(lib, "SetupAPI.lib")int main(int argc, char ** argv) { HDEVINFO deviceInfoSet; GUID *guidDev = (GUID*) &GUID_DEVCLASS_DISPLAY; deviceInfoSe 阅读全文

匿名管道 双向通信 需要两个

2013-05-07 01:52 by Scott Guthrie Liu, 421 阅读, 0 推荐, 收藏, 编辑
摘要:http://www.cppblog.com/returnnull/archive/2007/05/11/23855.htmlhttp://www.cppblog.com/ice197983/articles/4425.htmlhttp://blog.163.com/kksunshine@yeah/blog/static/118612388201121154017976/http://blog.163.com/tangmin927@126/blog/static/31537494200922043055553/http://www.cnblogs.com/BoyXiao/archive/201 阅读全文

Controlling IntelliSense Through Macros VS2005 sp1 vs2008

2013-04-23 10:01 by Scott Guthrie Liu, 209 阅读, 0 推荐, 收藏, 编辑
摘要:http://blogs.msdn.com/b/vcblog/archive/2007/11/19/controlling-intellisense-through-macros.aspxFirst, bring up the Macro Explorer, which can be accessed through “Tools|Macros|Macro Explorer”.In the Macro Explorer window, right click on the “Macros” node and select “New Macro Project”.Select “Macro Pr 阅读全文

怎么知道windows dll是32位还是64位?

2013-02-19 15:27 by Scott Guthrie Liu, 327 阅读, 0 推荐, 收藏, 编辑
摘要:使用Visual Studio 2008 Command Prompt你可以用VS调用dumpbin并使用headers选项,例如:dumpbin /headers my32bit.dll输出:PE signature foundFile Type: DLLFILE HEADER VALUES 14C machine (x86) 8 number of sections 4800C572 time date stamp Sat Apr 12 22:21:38 2008 0 file pointer t... 阅读全文

Largeint.lib

2013-02-04 18:23 by Scott Guthrie Liu, 336 阅读, 0 推荐, 收藏, 编辑
摘要:编译DX2005年版及其以前版本的DirectShow或是其他老版本代码时,如果发现Largeint.lib找不到这个LNK1104错误,"cannot open file 'Largeint.lib'"那么,直接删除largeint.lib这个库的引用……vs 2k5不提供这个独立的largeint库了……在附加依赖项里面删除lagerint.lib 阅读全文