在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 《DirectShow开发指南》(随书源代码)完整

《DirectShow开发指南》(随书源代码)完整

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:0.73M
  • 下载次数:13
  • 浏览次数:270
  • 发布时间:2021-11-14
  • 实例类别:一般编程问题
  • 发 布 人:js2021
  • 文件格式:.zip
  • 所需积分:2

实例介绍

【实例简介】
DirectShow开发指南(源码)完整

【实例截图】

Chapter04:第4章用到的代码,其中AppIPTransform为MFC Filter的例子,
DsDemo是一些演示代码,FilterTitleOverlay是字符叠加Filter的源代码。
Chapter05:第5章用到的代码,其中GraphBuilding为Filter Graph构建技术
的一些代码,SimplePlayer为一个简单的播放器例子。
Chapter07:第7章用到的代码,其中DsDemo是一些演示代码。
Chapter09:第9章用到的代码,其中DESCallback演示了控制DirectShow智能
连接的方法。
Chapter18:第18章用到的代码,其中MpegNetwork为“MPEG流的网络客户端播放”
实现的所有源代码(请打开Daisy.dsw浏览各项目)。
Chapter19:第19章用到的代码,其中DVD2AVI_1.77.3_SRC.zip为开放源码,
FilterMpeg2VD为此开放源码基础上开发的MPEG-2 Video Decoder Filter例子。

除上述代码外,本书各章用到的其他代码均在DirectX SDK安装目录的Samples
子目录下可以找到。

【核心代码】
4744302542993952043.rar
├── DirectShow开发指南
│   └── 《DirectShow开发指南》源码
│   ├── Chapter04
│   │   ├── AppIPTransform
│   │   │   ├── AppIPTransform.cpp
│   │   │   ├── AppIPTransformDoc.cpp
│   │   │   ├── AppIPTransformDoc.h
│   │   │   ├── AppIPTransform.dsp
│   │   │   ├── AppIPTransform.h
│   │   │   ├── AppIPTransform.rc
│   │   │   ├── AppIPTransformView.cpp
│   │   │   ├── AppIPTransformView.h
│   │   │   ├── IPFilter.cpp
│   │   │   ├── IPFilter.h
│   │   │   ├── MainFrm.cpp
│   │   │   ├── MainFrm.h
│   │   │   ├── res
│   │   │   │   ├── AppIPTransformDoc.ico
│   │   │   │   ├── AppIPTransform.ico
│   │   │   │   └── AppIPTransform.rc2
│   │   │   ├── resource.h
│   │   │   ├── StdAfx.cpp
│   │   │   └── StdAfx.h
│   │   ├── DsDemo
│   │   │   ├── DsDemo.aps
│   │   │   ├── DsDemo.cpp
│   │   │   ├── DsDemoDlg.cpp
│   │   │   ├── DsDemoDlg.h
│   │   │   ├── DsDemo.dsp
│   │   │   ├── DsDemo.h
│   │   │   ├── DsDemo.rc
│   │   │   ├── res
│   │   │   │   ├── DsDemo.ico
│   │   │   │   └── DsDemo.rc2
│   │   │   ├── Resource.h
│   │   │   ├── StdAfx.cpp
│   │   │   └── StdAfx.h
│   │   └── FilterTitleOverlay
│   │   ├── CAutoFont.cpp
│   │   ├── CAutoFont.h
│   │   ├── CBasePixel.cpp
│   │   ├── CBasePixel.h
│   │   ├── CFilterTitleOverlay.cpp
│   │   ├── CFilterTitleOverlay.h
│   │   ├── COverlayController.cpp
│   │   ├── COverlayController.h
│   │   ├── CPixelRGB24.cpp
│   │   ├── CPixelRGB24.h
│   │   ├── CPixelRGB32.cpp
│   │   ├── CPixelRGB32.h
│   │   ├── CPixelRGB555.cpp
│   │   ├── CPixelRGB555.h
│   │   ├── CPixelRGB565.cpp
│   │   ├── CPixelRGB565.h
│   │   ├── CPixelRGB8.cpp
│   │   ├── CPixelRGB8.h
│   │   ├── CScrollController.cpp
│   │   ├── CScrollController.h
│   │   ├── CSysTimeOverlayController.cpp
│   │   ├── CSysTimeOverlayController.h
│   │   ├── CTitleOverlayProp.cpp
│   │   ├── CTitleOverlayProp.h
│   │   ├── FilterGraph1.jpg
│   │   ├── FilterTitleOverlay.def
│   │   ├── FilterTitleOverlay.dsp
│   │   ├── FilterTitleOverlay.rc
│   │   ├── ITitleOverlay.h
│   │   ├── OverlayDefs.h
│   │   └── resource.h
│   ├── Chapter05
│   │   ├── GraphBuilding
│   │   │   ├── GraphBuilding.cpp
│   │   │   ├── GraphBuildingDlg.cpp
│   │   │   ├── GraphBuildingDlg.h
│   │   │   ├── GraphBuilding.dsp
│   │   │   ├── GraphBuilding.h
│   │   │   ├── GraphBuilding.rc
│   │   │   ├── res
│   │   │   │   ├── GraphBuilding.ico
│   │   │   │   └── GraphBuilding.rc2
│   │   │   ├── Resource.h
│   │   │   ├── StdAfx.cpp
│   │   │   └── StdAfx.h
│   │   └── SimplePlayer
│   │   ├── CDXGraph.cpp
│   │   ├── CDXGraph.h
│   │   ├── res
│   │   │   ├── SimplePlayer.ico
│   │   │   └── SimplePlayer.rc2
│   │   ├── Resource.h
│   │   ├── SimplePlayer.cpp
│   │   ├── SimplePlayerDlg.cpp
│   │   ├── SimplePlayerDlg.h
│   │   ├── SimplePlayer.dsp
│   │   ├── SimplePlayer.h
│   │   ├── SimplePlayer.rc
│   │   ├── StdAfx.cpp
│   │   └── StdAfx.h
│   ├── Chapter07
│   │   └── DsDemo
│   │   ├── Debug
│   │   │   ├── DsDemo.res
│   │   │   ├── StdAfx.obj
│   │   │   └── vc60.pdb
│   │   ├── DeviceController.cpp
│   │   ├── DeviceController.h
│   │   ├── DsDemo.aps
│   │   ├── DsDemo.cpp
│   │   ├── DsDemoDlg.cpp
│   │   ├── DsDemoDlg.h
│   │   ├── DsDemo.dsp
│   │   ├── DsDemo.dsw
│   │   ├── DsDemo.h
│   │   ├── DsDemo.ncb
│   │   ├── DsDemo.opt
│   │   ├── DsDemo.plg
│   │   ├── DsDemo.rc
│   │   ├── res
│   │   │   ├── DsDemo.ico
│   │   │   └── DsDemo.rc2
│   │   ├── Resource.h
│   │   ├── StdAfx.cpp
│   │   └── StdAfx.h
│   ├── Chapter09
│   │   └── DESCallback
│   │   ├── CDXGraph.cpp
│   │   ├── CDXGraph.h
│   │   ├── CGraphBuilderCB.cpp
│   │   ├── CGraphBuilderCB.h
│   │   ├── CSupported.cpp
│   │   ├── CSupported.h
│   │   ├── DESCallback.cpp
│   │   ├── DESCallbackDlg.cpp
│   │   ├── DESCallbackDlg.h
│   │   ├── DESCallback.dsp
│   │   ├── DESCallback.h
│   │   ├── DESCallback.rc
│   │   ├── res
│   │   │   ├── DESCallback.ico
│   │   │   └── DESCallback.rc2
│   │   ├── resource.h
│   │   ├── StdAfx.cpp
│   │   └── StdAfx.h
│   ├── Chapter18
│   │   └── MpegNetwork
│   │   ├── Basic
│   │   │   ├── CListenSocket.cpp
│   │   │   ├── CListenSocket.h
│   │   │   ├── CLocalMachine.cpp
│   │   │   ├── CLocalMachine.h
│   │   │   ├── CWorkerSocket.cpp
│   │   │   └── CWorkerSocket.h
│   │   ├── Builds
│   │   ├── Daisy.dsw
│   │   ├── MediaClient
│   │   │   ├── asyncio.cpp
│   │   │   ├── asyncio.h
│   │   │   ├── asyncrdr.cpp
│   │   │   ├── asyncrdr.h
│   │   │   ├── CDataAdmin.cpp
│   │   │   ├── CDataAdmin.h
│   │   │   ├── CFilterGraph.cpp
│   │   │   ├── CFilterGraph.h
│   │   │   ├── CMediaSocketClient.cpp
│   │   │   ├── CMediaSocketClient.h
│   │   │   ├── MediaClient.cpp
│   │   │   ├── MediaClientDlg.cpp
│   │   │   ├── MediaClientDlg.h
│   │   │   ├── MediaClient.dsp
│   │   │   ├── MediaClient.h
│   │   │   ├── MediaClient.rc
│   │   │   ├── MemFilter.h
│   │   │   ├── MyDef.h
│   │   │   ├── res
│   │   │   │   ├── MediaClient.ico
│   │   │   │   └── MediaClient.rc2
│   │   │   ├── Resource.h
│   │   │   ├── StdAfx.cpp
│   │   │   ├── StdAfx.h
│   │   │   └── streams.h
│   │   └── MediaServer
│   │   ├── CMediaSocketServer.cpp
│   │   ├── CMediaSocketServer.h
│   │   ├── MediaServer.cpp
│   │   ├── MediaServerDlg.cpp
│   │   ├── MediaServerDlg.h
│   │   ├── MediaServer.dsp
│   │   ├── MediaServer.h
│   │   ├── MediaServer.rc
│   │   ├── res
│   │   │   ├── MediaServer.ico
│   │   │   └── MediaServer.rc2
│   │   ├── Resource.h
│   │   ├── StdAfx.cpp
│   │   └── StdAfx.h
│   ├── Chapter19
│   │   ├── DVD2AVI_1.77.3_SRC.zip
│   │   └── FilterMpeg2VD
│   │   ├── CDecodedStream.cpp
│   │   ├── CDecodedStream.h
│   │   ├── CFilterMpeg2VD.cpp
│   │   ├── CFilterMpeg2VD.h
│   │   ├── CFilterMpeg2VDProp.cpp
│   │   ├── CFilterMpeg2VDProp.h
│   │   ├── CMpegController.cpp
│   │   ├── CMpegController.h
│   │   ├── CMpegInputPin.cpp
│   │   ├── CMpegInputPin.h
│   │   ├── Debug
│   │   ├── FilterMpeg2VD.aps
│   │   ├── FilterMpeg2VD.def
│   │   ├── FilterMpeg2VD.dsp
│   │   ├── FilterMpeg2VD.dsw
│   │   ├── FilterMpeg2VD.ncb
│   │   ├── FilterMpeg2VD.opt
│   │   ├── FilterMpeg2VD.rc
│   │   ├── getbit.c
│   │   ├── getbit.h
│   │   ├── gethdr.c
│   │   ├── getpic.c
│   │   ├── global.h
│   │   ├── idctfpu.c
│   │   ├── idctmmx.c
│   │   ├── idctref.c
│   │   ├── IMpeg2VD.h
│   │   ├── motion.c
│   │   ├── mpeg2dec.c
│   │   ├── resource.h
│   │   ├── smartcache.c
│   │   ├── smartcache.h
│   │   └── store.c
│   └── Readme.txt

31 directories, 202 files

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警