summaryrefslogtreecommitdiffstats
path: root/plugins/pluginDirectShow/internals/wince/DSNullFilter.cxx
blob: 76d713c31690ecd8979cfd5cd20f20bcca9dab10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#if defined(_WIN32_WCE)

/* Copyright (C) 2014-2015 Mamadou DIOP
*	
* This file is part of Open Source Doubango Framework.
*
* DOUBANGO is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*	
* DOUBANGO is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
*	
* You should have received a copy of the GNU General Public License
* along with DOUBANGO.
*/

#include "internals/wince/DSNullFilter.h"

// {7F9F08CF-139F-40b2-A283-01C4EC26A452}
TDSHOW_DEFINE_GUID(CLSID_DSNullFilter, 
0x7f9f08cf, 0x139f, 0x40b2, 0xa2, 0x83, 0x1, 0xc4, 0xec, 0x26, 0xa4, 0x52);

DSNullFilter::DSNullFilter(LPUNKNOWN punk,HRESULT *phr) 
    : CTransInPlaceFilter(TEXT("NullRenderer"), punk, CLSID_DSNullFilter, phr)
{
}

HRESULT DSNullFilter::CheckInputType(const CMediaType *mtIn)
{
    CheckPointer(mtIn,E_POINTER);

    if (*mtIn->FormatType() != FORMAT_VideoInfo) {
        return E_INVALIDARG;
    }

    if ( *mtIn->Type( ) != MEDIATYPE_Video ) {
        return E_INVALIDARG;
    }

    if ( *mtIn->Subtype( ) != MEDIASUBTYPE_RGB24 ) {
        return E_INVALIDARG;
    }

    return NOERROR;
}

HRESULT DSNullFilter::Transform(IMediaSample *pSample)
{
    return NOERROR;
}

#endif /* _WIN32_WCE */
OpenPOWER on IntegriCloud