1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

avcodec/avdct: use the proper function to free AVCodecContext

Fixes ticket #7074

Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer 2018-03-26 12:51:25 -03:00
parent 3eff98c927
commit 3c245707bd

View File

@ -123,8 +123,7 @@ int avcodec_dct_init(AVDCT *dsp)
} }
#endif #endif
avcodec_close(avctx); avcodec_free_context(&avctx);
av_free(avctx);
return 0; return 0;
} }