summaryrefslogtreecommitdiffstats
path: root/loader/dshow/outputpin.h
blob: 7cedd7dfed342c28d4346816bc70b3af574c1a9b (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
#ifndef DS_OUTPUTPIN_H
#define DS_OUTPUTPIN_H

/* "output pin" - the one that connects to output of filter. */

#include "interfaces.h"
#include "guids.h"
#include "allocator.h"

struct COutputPin;

struct COutputMemPin : public IMemInputPin
{
    char** frame_pointer;
    long* frame_size_pointer;
    MemAllocator* pAllocator;
    COutputPin* parent;
};

struct COutputPin : public IPin
{
    COutputMemPin* mempin;
    int refcount;
    AM_MEDIA_TYPE type;
    IPin* remote;
    COutputPin(const AM_MEDIA_TYPE& vhdr);
    ~COutputPin();
    void SetFramePointer(char** z) { mempin->frame_pointer = z; }
    void SetPointer2(char* p) {
	if (mempin->pAllocator)
	    mempin->pAllocator->SetPointer(p);
    }
    void SetFrameSizePointer(long* z) { mempin->frame_size_pointer = z; }
    void SetNewFormat(const AM_MEDIA_TYPE& a) { type = a; }
};

#endif /* DS_OUTPUTPIN_H */