From 39807ee67452d1e3a5034b953147326b68a7eca5 Mon Sep 17 00:00:00 2001 From: Gavin Troy Date: Sun, 16 Apr 2023 22:32:52 +0100 Subject: [PATCH] Remove AV_CODEC_{CAP,FLAG}_TRUNCATED for FFmpeg 6 compatibility Closes #1251 Gbp-Pq: Name 0005-Remove-AV_CODEC_-CAP-FLAG-_TRUNCATED-for-FFmpeg-6-co.patch --- ip/ffmpeg.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/ip/ffmpeg.c b/ip/ffmpeg.c index 09ed3fc..ea0b26f 100644 --- a/ip/ffmpeg.c +++ b/ip/ffmpeg.c @@ -202,9 +202,6 @@ static int ffmpeg_open(struct input_plugin_data *ip_data) break; } - if (codec->capabilities & AV_CODEC_CAP_TRUNCATED) - cc->flags |= AV_CODEC_FLAG_TRUNCATED; - if (avcodec_open2(cc, codec, NULL) < 0) { d_print("could not open codec: %d, %s\n", cc->codec_id, avcodec_get_name(cc->codec_id)); err = -IP_ERROR_UNSUPPORTED_FILE_TYPE; -- 2.30.2