1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Author: Andreas Tille <tille@debian.org>
Last-Update: 2025-12-14
Bug-Debian: https://bugs.debian.org/1122886
Description: Build using ffmpeg 8.0
Forwarded: https://github.com/ferdymercury/amide/issues/35
--- a/amide-current/src/mpeg_encode.c
+++ b/amide-current/src/mpeg_encode.c
@@ -169,7 +169,7 @@ static encode_t * encode_free(encode_t *
return encode;
if (encode->context != NULL) {
- avcodec_close(encode->context);
+ avcodec_free_context(&encode->context);
av_free(encode->context);
encode->context = NULL;
}
|