1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-02-04 06:08:26 +02:00
FFmpeg/libavcodec
Cameron Gutman 4cbb997e15 avcodec/amfenc: Fix inverted loop filter option
The AMF HEVC encoder takes a bool option for whether deblocking filter
should be _disabled_ instead of whether it should _enabled_ like the
AMF H.264 encoder does. The logic was accidentally copied from H.264 to
HEVC without negating the bool value, so the deblocking filter was
actually disabled when AV_CODEC_FLAG_LOOP_FILTER was set.

Before this patch:
------------------
no flags set => deblocking filter on
flags +loop  => deblocking filter off
flags -loop  => deblocking filter on

After this patch:
-----------------
no flags set => deblocking filter on
flags +loop  => deblocking filter on
flags -loop  => deblocking filter off

Signed-off-by: Cameron Gutman <aicommander@gmail.com>
2024-09-28 16:01:00 +02:00
..
2024-09-02 11:56:53 +02:00
2024-09-24 20:04:51 +03:00
2024-08-14 18:21:01 +02:00
2024-09-17 21:12:31 +02:00
2024-07-12 22:42:18 +02:00
2024-09-06 13:59:28 +02:00
2024-07-12 22:42:20 +02:00
2024-09-24 15:37:17 +02:00
2024-07-23 23:21:17 +02:00
2024-07-12 22:42:28 +02:00
2024-09-24 15:37:19 +02:00
2024-07-12 22:42:40 +02:00
2024-07-12 22:42:42 +02:00
2024-08-09 13:40:26 +08:00
2024-09-24 15:37:19 +02:00
2024-09-24 15:37:20 +02:00