summaryrefslogtreecommitdiffstats
path: root/loader/dshow/allocator.h
diff options
context:
space:
mode:
Diffstat (limited to 'loader/dshow/allocator.h')
-rw-r--r--loader/dshow/allocator.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/loader/dshow/allocator.h b/loader/dshow/allocator.h
deleted file mode 100644
index 71597b3634..0000000000
--- a/loader/dshow/allocator.h
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifndef MPLAYER_ALLOCATOR_H
-#define MPLAYER_ALLOCATOR_H
-
-#include "interfaces.h"
-#include "cmediasample.h"
-
-typedef struct avm_list_t avm_list_t;
-typedef struct MemAllocator MemAllocator;
-
-struct MemAllocator
-{
- IMemAllocator_vt* vt;
- DECLARE_IUNKNOWN();
- ALLOCATOR_PROPERTIES props;
- avm_list_t* used_list;
- avm_list_t* free_list;
- char* new_pointer;
- CMediaSample* modified_sample;
- GUID interfaces[2];
-
- void ( *SetPointer )(MemAllocator* This, char* pointer);
- void ( *ResetPointer )(MemAllocator* This);
-};
-
-MemAllocator* MemAllocatorCreate(void);
-
-#endif /* MPLAYER_ALLOCATOR_H */