flashsv2enc: use av_freep()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2011-04-29 02:41:13 +02:00
parent f6a5edb64c
commit ba9c4db59a
1 changed files with 7 additions and 7 deletions

View File

@ -123,14 +123,14 @@ typedef struct FlashSV2Context {
static av_cold void cleanup(FlashSV2Context * s) static av_cold void cleanup(FlashSV2Context * s)
{ {
av_free(s->encbuffer); av_freep(&s->encbuffer);
av_free(s->keybuffer); av_freep(&s->keybuffer);
av_free(s->databuffer); av_freep(&s->databuffer);
av_free(s->current_frame); av_freep(&s->current_frame);
av_free(s->key_frame); av_freep(&s->key_frame);
av_free(s->frame_blocks); av_freep(&s->frame_blocks);
av_free(s->key_blocks); av_freep(&s->key_blocks);
} }
static void init_blocks(FlashSV2Context * s, Block * blocks, static void init_blocks(FlashSV2Context * s, Block * blocks,