Commit 4f5d3ce4d5 for aom
commit 4f5d3ce4d5da4ac3f0449db9249447401e457991
Author: Wan-Teh Chang <wtc@google.com>
Date: Mon May 11 14:39:07 2026 -0700
Assign values to two new codec controls explicitly
Assign values to AV1E_GET_GOP_INFO and AOME_SET_VALIDATE_HBD_INPUT
explicitly.
Change-Id: I5c086dfc346015bc683068268c7c887a8cf5429f
diff --git a/aom/aomcx.h b/aom/aomcx.h
index a4099490ba..caed454cde 100644
--- a/aom/aomcx.h
+++ b/aom/aomcx.h
@@ -1633,7 +1633,7 @@ enum aome_enc_control_id {
*
* args: a pointer to aom_gop_info_t
*/
- AV1E_GET_GOP_INFO,
+ AV1E_GET_GOP_INFO = 174,
/*!\brief Codec control function to validate HBD input.
*
@@ -1641,7 +1641,7 @@ enum aome_enc_control_id {
* ensure that every pixel is within the valid range. To disable/enable,
* set this parameter to 0/1. The default value is set to be 1.
*/
- AOME_SET_VALIDATE_HBD_INPUT,
+ AOME_SET_VALIDATE_HBD_INPUT = 175,
// Any new encoder control IDs should be added above.
// Maximum allowed encoder control ID is 229.