Commit 7798826675 for aom

commit 7798826675b9f090ac1fa23572d3e5b85ef48a8a
Author: Wan-Teh Chang <wtc@google.com>
Date:   Thu Aug 20 17:46:01 2026 -0700

    Improve documentation of the force_max_q option

    Document the values (including the default value) of force_max_q. Make
    it clear force_max_q is a boolean flag rather than sets the value of the
    max q.

    Change-Id: Id5e1040b6357908ddb400c654d911509e4906a3b

diff --git a/av1/arg_defs.c b/av1/arg_defs.c
index a3eefc9e8c..9a3352c6cd 100644
--- a/av1/arg_defs.c
+++ b/av1/arg_defs.c
@@ -727,7 +727,8 @@ const av1_codec_arg_definitions_t g_av1_codec_arg_defs = {
               "Check that input samples are within the valid range "
               "for the chosen bit depth with high bit depth encoding (0: "
               "disabled, 1: enabled (default))"),
-  .force_max_q =
-      ARG_DEF(NULL, "force-max-q", 1, "Force max Q used in vbr mode."),
+  .force_max_q = ARG_DEF(
+      NULL, "force-max-q", 1,
+      "Force the use of max Q in VBR mode (0: false (default), 1: true)."),
 #endif  // CONFIG_AV1_ENCODER
 };
diff --git a/av1/encoder/encoder.h b/av1/encoder/encoder.h
index b15f0ff94e..82e9cab3fa 100644
--- a/av1/encoder/encoder.h
+++ b/av1/encoder/encoder.h
@@ -621,7 +621,7 @@ typedef struct {
    */
   int max_consec_drop_ms;
   /*!
-   * Force to allow the usage of maximum q in vbr mode.
+   * Force the use of maximum q in vbr mode.
    */
   int force_max_q;
 } RateControlCfg;