⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cmediasample.h

📁 coreavc for linux in unix_linux
💻 H
字号:
#ifndef MPLAYER_CMEDIASAMPLE_H#define MPLAYER_CMEDIASAMPLE_H#include "interfaces.h"#include "guids.h"typedef struct CMediaSample CMediaSample;struct CMediaSample{    IMediaSample_vt* vt;    DECLARE_IUNKNOWN();    IMemAllocator* all;    int size;    int actual_size;    char* block;    char* own_block;    int isPreroll;    int isSyncPoint;    int isDiscontinuity;    LONGLONG time_start;    LONGLONG time_end;    AM_MEDIA_TYPE media_type;    int type_valid;    void ( *SetPointer) (CMediaSample* This, char* pointer);    void ( *ResetPointer) (CMediaSample* This); // FIXME replace with Set & 0};CMediaSample* CMediaSampleCreate(IMemAllocator* allocator, int size);// called from allocatorvoid CMediaSample_Destroy(CMediaSample* This);extern int get_memstruct_pagenum(void * __ptr);extern void memstruct_setlock(void * __ptr, unsigned char value);#endif /* MPLAYER_CMEDIASAMPLE_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -