CSourceStream类,是CSource类的OutputPin[source.h/source.cpp]

派生自CAMThread和CBaseOutputPin
l         成员变量:

CSource *m_pFilter;    // The parent of this stream//在构造的时候作为输入参数

l         新增加的virtual函数:
// Override this to provide the worker thread a means of processing a buffer
virtual HRESULT FillBuffer(IMediaSample *pSamp) PURE;
// Called as the thread is created/destroyed - use to perform
// jobs such as start/stop streaming mode
// If OnThreadCreate returns an error the thread will exit.
virtual HRESULT OnThreadCreate(void) {return NOERROR;};
virtual HRESULT OnThreadDestroy(void) {return NOERROR;};
virtual HRESULT OnThreadStartPlay(void) {return NOERROR;};

virtual HRESULT DoBufferProcessingLoop(void);    // the loop executed whilst running
{
     Command com;
     OnThreadStartPlay();//你可以重载这个函数,可以在play之前作一些操作
     do 
     {
          while (!CheckRequest(&com))//

//Determines if a command is waiting for the thread.

//TRUE if the pCom parameter contains a command; otherwise, returns FALSE

{
               IMediaSample *pSample;
               HRESULT hr = GetDeliveryBuffer(&pSample,NULL,NULL,0);
              //这个函数是baseoutputpin的成员函数,返回一块空白的内存区域,需要去填充数据的
              //实际上是调用IMemAllocator::GetBuffer函数来实现的            
               if (FAILED(hr)) { Sleep(1); continue;}
               // Virtual function user will override.
              //得到数据之后,就填充数据
               hr = FillBuffer(pSample);
               if (hr == S_OK) 
               { hr = Deliver(pSample); pSample->Release();if(hr != S_OK) return S_OK;}
               //上面的这个函数调用的是This method calls the IMemInputPin::Receive method on the input pin.  //Receive can block if the IMemInputPin::ReceiveCanBlock method returns S_OK.
//这样你的接收的filter就阻塞去接收数据
               else if (hr == S_FALSE) 
               { pSample->Release();DeliverEndOfStream();return S_OK;}
               else 
               { 
                    pSample->Release();DeliverEndOfStream();
                    m_pFilter->NotifyEvent(EC_ERRORABORT, hr, 0); 
                    return hr;
               }
         }
         if (com == CMD_RUN || com == CMD_PAUSE) { Reply(NOERROR); } 
         else if (com != CMD_STOP) { Reply((DWORD) E_UNEXPECTED);}
    }
    while (com != CMD_STOP);
    return S_FALSE;
}
上面的reply是下面的一个CAMThread的函数
上面BOOL    CheckRequest(Command *pCom) { return CAMThread::CheckRequest( (DWORD *) pCom); }
        继承的CBasePin的virtual函数:
HRESULT Active(void);    // Starts up the worker thread
{
     CAutoLock lock(m_pFilter->pStateLock());
     if (m_pFilter->IsActive()) {return S_FALSE;}
     if (!IsConnected()) {return NOERROR;}
     hr = CBaseOutputPin::Active();
     if (FAILED(hr)) {return hr;}
     ASSERT(!ThreadExists());
     // start the thread
     if (!Create()) {return E_FAIL;}
     // Tell thread to initialize. If OnThreadCreate Fails, so does this.
     hr = Init();
     if (FAILED(hr)) return hr;
     return Pause();
}
HRESULT Inactive(void); // Exits the worker thread.
{
     CAutoLock lock(m_pFilter->pStateLock());
     if (!IsConnected()) {return NOERROR;}
     // !!! need to do this before trying to stop the thread, because
     // we may be stuck waiting for our own allocator!!!
     hr = CBaseOutputPin::Inactive(); // call this first to Decommit the allocator
     if (FAILED(hr)) {return hr;}
     if (ThreadExists()) 
     {
          hr = Stop();if (FAILED(hr)) {return hr;}
          hr = Exit();if (FAILED(hr)) {return hr;}
          Close(); // Wait for the thread to exit, then tidy up.
     }
     return NOERROR;
}
virtual HRESULT CheckMediaType(const CMediaType *pMediaType);
{
// 默认只支持一种格式,即只调用新增加的GetMediaType函数得到MediaType,
// 与输入的Type进行比较
}
virtual HRESULT GetMediaType(int iPosition, CMediaType *pMediaType); // List pos. 0-n
{
// 判断iPosition必须为0,返回新增加的GetMediaType函数
}

l         操作函数:
HRESULT Init(void) { return CallWorker(CMD_INIT); }
HRESULT Exit(void) { return CallWorker(CMD_EXIT); }
HRESULT Run(void) { return CallWorker(CMD_RUN); }
HRESULT Pause(void) { return CallWorker(CMD_PAUSE); }
HRESULT Stop(void) { return CallWorker(CMD_STOP); }

我们通过上面的代码发现,CAMThread和CBaseOutputPin关联很紧密,下面我们来看看CAMThread是一个什么样的类

l         CAMThread的virtual函数
// override these if you want to add thread commands
// Return codes > 0 indicate an error occured
virtual DWORD ThreadProc(void);        // the thread function
{
     // 整个函数实现了一个同步的通讯Thread。
     Command com;
     do { com = GetRequest();if (com != CMD_INIT) { Reply((DWORD) E_UNEXPECTED);} }
     while (com != CMD_INIT);
     hr = OnThreadCreate(); // perform set up tasks
     if (FAILED(hr)) 
     {
          OnThreadDestroy();
          Reply(hr);   // send failed return code from OnThreadCreate
          return 1;
     }
     Reply(NOERROR);
     Command cmd;
    do 
    {
         cmd = GetRequest();
         switch (cmd) {
         case CMD_EXIT: Reply(NOERROR); break;
         case CMD_RUN:
         case CMD_PAUSE:Reply(NOERROR); DoBufferProcessingLoop();break;
         case CMD_STOP: Reply(NOERROR); break;
         default: Reply((DWORD) E_NOTIMPL); break;}
     } 
     while (cmd != CMD_EXIT);
     hr = OnThreadDestroy(); // tidy up.
     if (FAILED(hr)) { return 1;}
     return 0;
}

l         Constructor:
// increments the number of pins present on the filter
CSourceStream(TCHAR *pObjectName, HRESULT *phr, CSource *ps, LPCWSTR pPinName)
: CBaseOutputPin(pObjectName, ps, ps->pStateLock(), phr, pPinName),
m_pFilter(ps) {*phr = m_pFilter->AddPin(this);}

l         Deconstructor:
~CSourceStream(void) {m_pFilter->RemovePin(this);}

这个类要实现就是这个函数了,注意Reply函数经常调用,因为
CAMThread::Reply(DWORD dw)
{
    m_dwReturnVal = dw;
    
    // The request is now complete so CheckRequest should fail from
    // now on
    //
    // This event should be reset BEFORE we signal the client or
    // the client may Set it before we reset it and we'll then
    // reset it (!)
    
    m_EventSend.Reset();
    
    // Tell the client we're finished
    
    m_EventComplete.Set();
}

directX--关于CSource和CSourceStream (谁调用了fillbuffer)的更多相关文章

  1. directX--大约CSource和CSourceStream (谁在叫fillbuffer)

    CSourceStream类别,它是CSource类别OutputPin[source.h/source.cpp] 派生自CAMThread和CBaseOutputPinl         成员变量: ...

  2. Windows 8 DirectX 和Xaml UI 混合处理方案

    原文 http://www.cnblogs.com/chenkai/archive/2012/11/29/2794983.html [如果不想读这么长问题描述和通用的解决方案. 可以直接skip 这段 ...

  3. VLC说明

    一.简介 vlc的全名是Video Lan Client,是一个开源的.跨平台的视频播放器.VLC支持大量的音视频传输.封装和编码格式,完整的功能特性列表可以在这里获得http://www.video ...

  4. hlsl 和cg 涉及 mul 左乘 右乘

    error: 1. mul' implicit truncation of vector type 2. matrixXXX: array dimensions of(unknown scope en ...

  5. kinect for windows - DepthBasics-D2D详解之一

    Depth在kinect中经常被翻译为深度图,指的是图像到摄像头的距离,这些距离数据能让机器知道物理距离有多远.kinect通过两个红外摄像头来实现这个功能的.在这个例子里,就实现了深度图的提取和现实 ...

  6. kinect for windows - DepthBasics-D2D详解

    引自:http://blog.csdn.net/itcastcpp/article/details/20282667 Depth在kinect中经常被翻译为深度图,指的是图像到摄像头的距离,这些距离数 ...

  7. VLC框架分析

      功能部份:VLC媒体播放器的核心是libvlc ,它提供了界面,应用处理功能,如播放列表管理,音频和视频解码和输出,线程系统.所有libvlc源文件设在的/src目录及其子目录:# config/ ...

  8. VLC简介及使用说明

    一.简介    VLC的全名是Video Lan Client,是一个开源的.跨平台的视频播放器.VLC支持大量的音视频传输.封装和编码格式,完整的功能特性列表可以在这里获得http://www.vi ...

  9. C++实现一个Vector3空间向量类(转)

    转自:http://www.2cto.com/kf/201311/260139.html ector2,3,4类在DirectX中都有现成的可以调用,不过要实现其中的功能其实也不难,也都是一些简单的数 ...

随机推荐

  1. null undefiend NaN

    console.log(typeof NaN) console.log(typeof undefined) console.log(typeof null)

  2. 如何更改图片的背景色(PS、证件照之星)

    如何更改图片的背景色(PS.证件照之星) 1.1  证照之星教你如何给证件照换背景 证照之星教你如何给证件照换背景?这个问题困扰很多人,如果你不了解证照之星,一款专业的证件照片制作软件,你肯定就无法自 ...

  3. 洛谷 [P1020] 导弹拦截 (N*logN)

    首先此一眼就能看出来是一个非常基础的最长不下降子序列(LIS),其朴素的 N^2做法很简单,但如何将其优化成为N*logN? 我们不妨换一个思路,维护一个f数组,f[x]表示长度为x的LIS的最大的最 ...

  4. Codeforces Round #402 (Div. 2)

    Codeforces Round #402 (Div. 2) A. 日常沙比提 #include<iostream> #include<cstdio> #include< ...

  5. Codeforces Round #398 (Div. 2)

    Codeforces Round #398 (Div. 2) A.Snacktower 模拟 我和官方题解的命名神相似...$has$ #include <iostream> #inclu ...

  6. Google chrome浏览器中通过扩展调用本地应用程序以及和程序相互通讯(C++)

    最近项目用到浏览插件的开发,IE用到的是BHO,chrome打算做成扩展. 但是和ie有一点不同,chrome扩展是基于html+js+css开发的,那么就会有二个问题 1. 代码和算法等容易被别人复 ...

  7. 从一个实例学习----FLASK-WTF

    本案例通过实现一个注册页面的编写,来带你了解FLASK-WTF的运用. 主要功能为表单基础的功能--手机号码必须为11位数,且通过数据库查找不能有已经注册的了,密码要求输入两遍且必须一样,且所有内容不 ...

  8. LeetCode - 776. Split BST

    Given a Binary Search Tree (BST) with root node root, and a target value V, split the tree into two ...

  9. 【转】egametang框架简介

    讨论QQ群 : 474643097 1.可用VS单步调试的分布式服务端,N变1 一般来说,分布式服务端要启动很多进程,一旦进程多了,单步调试就变得非常困难,导致服务端开发基本上靠打log来查找问题.平 ...

  10. [APIO2015]雅加达的摩天楼

    Description 印尼首都雅加达市有 N 座摩天楼,它们排列成一条直线,我们从左到右依次将它们编号为 0 到 N−1.除了这 N 座摩天楼外,雅加达市没有其他摩天楼. 有 M 只叫做 " ...