directshow
江湖小馆
保持自我,默默前行
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Directshow_环境
Directshow_环境 开发工具 VS 2015 DirectShow 开发环境 VS2015 自带 环境配置 头文件 #include <dshow.h> 静态库 #pragma comment (lib,"Strmiids.lib") #pragma comment (lib,"Quartz.lib") ...原创 2019-06-04 15:27:14 · 661 阅读 · 0 评论 -
Directshow_播放一个文件
Directshow_播放一个文件 1.初始化 HRESULT hr = CoInitialize(NULL); if (FAILED(hr)) { // Add error-handling code here. (Omitted for clarity.) } 2.创建图表管理器 IGraphBuilder *pGraph; HRESULT hr = CoCreateInsta...原创 2019-06-04 15:43:42 · 281 阅读 · 0 评论 -
Directshow_结构调试_GraphEdit
Directshow_结构调试_GraphEdit 介绍 编写Directshow时,我们可以通过 GraphEdit.exe 展示当前应用的Directshow的结构 1.添加通信代码 HRESULT AddToRot(IUnknown *pUnkGraph, DWORD *pdwRegister) { IMoniker * pMoniker = NULL; IRunnin...原创 2019-06-04 17:04:39 · 303 阅读 · 0 评论
分享