#ifndef _cffmpeg_common_hpp_ #define _cffmpeg_common_hpp_ #include #include namespace ffwrapper{ class CodedData; } // 缓存的视频帧 typedef struct _cache_pkt{ std::shared_ptr data; int64_t id; }CPacket; #endif