avcodec icon indicating copy to clipboard operation
avcodec copied to clipboard

x264内存泄漏

Open BreakingY opened this issue 2 years ago • 0 comments

’‘’ static void x264enc_destroy(void* h264) { struct x264_encoder_t* p; p = (struct x264_encoder_t*)h264; x264_encoder_close(p->x264); // x264_picture_clean(&p->pic); } ‘’‘ x264enc_destroy没有free掉p产生内存泄漏

BreakingY avatar Aug 14 '23 07:08 BreakingY