[osal/mpp_buffer]: remove MppBufferData and add MppBufferInfo for user interface, tested on window and linux

git-svn-id: https://10.10.10.66:8443/svn/MediaProcessPlatform/trunk/mpp@142 6e48237b-75ef-9749-8fc9-41990f28c85a
This commit is contained in:
ChenHengming
2015-08-21 02:48:01 +00:00
parent 3f6812f144
commit 15eb6c5893
12 changed files with 198 additions and 140 deletions

View File

@@ -18,14 +18,14 @@
#define __MPP_ALLOCATOR_IMPL_H__
#include "mpp_thread.h"
#include "mpp_buffer.h"
#include "os_allocator.h"
typedef struct {
pthread_mutex_t lock;
MppBufferType type;
size_t alignment;
void *allocator;
void *api;
os_allocator os_api;
void *ctx;
} MppAllocatorImpl;
#endif /*__MPP_ALLOCATOR_IMPL_H__*/