comparison loader/dshow/outputpin.h @ 7386:174e2a58b4cd

avifile sync - 95% cosmetics 5% bug
author arpi
date Fri, 13 Sep 2002 19:43:17 +0000
parents 623cdb771e97
children 49f01f8fbd60
comparison
equal deleted inserted replaced
7385:e2fcdd7608b1 7386:174e2a58b4cd
3 3
4 /* "output pin" - the one that connects to output of filter. */ 4 /* "output pin" - the one that connects to output of filter. */
5 5
6 #include "allocator.h" 6 #include "allocator.h"
7 7
8 typedef struct _COutputMemPin COutputMemPin;
8 typedef struct _COutputPin COutputPin; 9 typedef struct _COutputPin COutputPin;
9
10 typedef struct _COutputMemPin COutputMemPin;
11 struct _COutputMemPin
12 {
13 IMemInputPin_vt* vt;
14 DECLARE_IUNKNOWN();
15 char** frame_pointer;
16 long* frame_size_pointer;
17 MemAllocator* pAllocator;
18 COutputPin* parent;
19 };
20 10
21 struct _COutputPin 11 struct _COutputPin
22 { 12 {
23 IPin_vt* vt; 13 IPin_vt* vt;
24 DECLARE_IUNKNOWN(); 14 DECLARE_IUNKNOWN();