50未看)
注意:本人的环境为qt6.11.1ffmpeg-5.16.2, 将dll拷贝到exe文件下进行调试4950main.c#include stdio.h #include "avpacket.h" #include "avframe.h" int main() { printf("Hello World!\n"); // av_packet_test(); av_frame_test(); return 0; }avframe.h#ifndef AVFRAME_H #define AVFRAME_H #include "libavcodec/avcodec.h" void av_frame_test(); #endif // AVFRAME_Havframe.c#include "avframe.h" #define MEM_ITEM_SIZE (20*1024*102) #define AVPACKET_LOOP_COUNT 1000 // 测试 内存泄漏 void av_frame_test1() { AVFrame *frame = NULL; int ret = 0