From 8b05674290e8f210cccfe7650c1d60867ff17471 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sun, 13 Aug 2023 15:52:35 -0500 Subject: [PATCH] Turn off AMF filler data to match other encoders --- src/video.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/video.cpp b/src/video.cpp index e95c31f8..bb25abab 100644 --- a/src/video.cpp +++ b/src/video.cpp @@ -760,7 +760,7 @@ namespace video { { // Common options { - { "filler_data"s, true }, + { "filler_data"s, false }, { "preanalysis"s, &config::video.amd.amd_preanalysis }, { "quality"s, &config::video.amd.amd_quality_av1 }, { "rc"s, &config::video.amd.amd_rc_av1 }, @@ -774,7 +774,7 @@ namespace video { { // Common options { - { "filler_data"s, true }, + { "filler_data"s, false }, { "gops_per_idr"s, 1 }, { "header_insertion_mode"s, "idr"s }, { "preanalysis"s, &config::video.amd.amd_preanalysis }, @@ -793,7 +793,7 @@ namespace video { { // Common options { - { "filler_data"s, true }, + { "filler_data"s, false }, { "log_to_dbg"s, "1"s }, { "preanalysis"s, &config::video.amd.amd_preanalysis }, { "qmax"s, 51 },