Commit 26ace51803 for aom
commit 26ace51803a154026b4f596773a40e28b3dc787a
Author: Wan-Teh Chang <wtc@google.com>
Date: Thu Apr 30 15:28:04 2026 -0700
svc: Fix typo in comments added in commit a93ba0f
The codec control that sets the number of spatial layers is
AOME_SET_NUMBER_SPATIAL_LAYERS, not AOME_SET_SPATIAL_LAYER_ID.
Bug: 503975732, 503993984, 503993985
Change-Id: Idd801c4c244fee1a771d486fa605ea53352b44cd
diff --git a/aom/aomcx.h b/aom/aomcx.h
index 1c344f70f3..5d6d20f1c9 100644
--- a/aom/aomcx.h
+++ b/aom/aomcx.h
@@ -200,7 +200,7 @@ enum aome_enc_control_id {
/*!\brief Codec control function to set encoder spatial layer id, int
* parameter. Spatial layer id must be within valid range of 0 to the
* allowed number of spatial layers, set via the control
- * AV1E_SET_SVC_PARAMS, or via AOME_SET_SPATIAL_LAYER_ID.
+ * AV1E_SET_SVC_PARAMS, or via AOME_SET_NUMBER_SPATIAL_LAYERS.
*/
AOME_SET_SPATIAL_LAYER_ID = 12,
@@ -1293,7 +1293,7 @@ enum aome_enc_control_id {
/*!\brief Codec control function to set the layer id, aom_svc_layer_id_t*
* parameter. Layer id for spatial or temporal layer must be within valid
* range of 0 to the allowed number of spatial or temporal layers, set via
- * the control AV1E_SET_SVC_PARAMS, or via AOME_SET_SPATIAL_LAYER_ID.
+ * the control AV1E_SET_SVC_PARAMS, or via AOME_SET_NUMBER_SPATIAL_LAYERS.
*/
AV1E_SET_SVC_LAYER_ID = 131,