mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
flashsv2enc: use av_freep()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
f6a5edb64c
commit
ba9c4db59a
@ -123,14 +123,14 @@ typedef struct FlashSV2Context {
|
||||
|
||||
static av_cold void cleanup(FlashSV2Context * s)
|
||||
{
|
||||
av_free(s->encbuffer);
|
||||
av_free(s->keybuffer);
|
||||
av_free(s->databuffer);
|
||||
av_free(s->current_frame);
|
||||
av_free(s->key_frame);
|
||||
av_freep(&s->encbuffer);
|
||||
av_freep(&s->keybuffer);
|
||||
av_freep(&s->databuffer);
|
||||
av_freep(&s->current_frame);
|
||||
av_freep(&s->key_frame);
|
||||
|
||||
av_free(s->frame_blocks);
|
||||
av_free(s->key_blocks);
|
||||
av_freep(&s->frame_blocks);
|
||||
av_freep(&s->key_blocks);
|
||||
}
|
||||
|
||||
static void init_blocks(FlashSV2Context * s, Block * blocks,
|
||||
|
Loading…
Reference in New Issue
Block a user