From d5f7c11567fcc339427555ea74152f05fbd97590 Mon Sep 17 00:00:00 2001 From: Milanka Ringwald Date: Fri, 24 Jan 2025 11:28:36 +0100 Subject: [PATCH] avrcp: rename one status code --- src/classic/avrcp.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/classic/avrcp.h b/src/classic/avrcp.h index 11c46e035..909be39b5 100644 --- a/src/classic/avrcp.h +++ b/src/classic/avrcp.h @@ -91,12 +91,12 @@ extern "C" { #define AVRCP_PLAYER_SUBTYPE_FEATURE_MASK_PODCAST 0x02u typedef enum { - AVRCP_STATUS_INVALID_COMMAND = 0, // sent if TG received a PDU that it did not understand. + AVRCP_STATUS_INVALID_COMMAND = 0, // Sent if TG received a PDU that it did not understand. AVRCP_STATUS_INVALID_PARAMETER, // Sent if the TG received a PDU with a parameter ID that it did not understand, or, if there is only one parameter ID in the PDU. - AVRCP_STATUS_SPECIFIED_PARAMETER_NOT_FOUND, // sent if the parameter ID is understood, but content is wrong or corrupted. - AVRCP_STATUS_INTERNAL_ERROR, // sent if there are error conditions not covered by a more specific error code. - AVRCP_STATUS_SUCCESS, // sent if the operation was successful. - AVRCP_STATUS_UID_CHANGED, // sent if the UIDs on the device have changed. + AVRCP_STATUS_PARAMETER_CONTENT_ERROR, // Sent if the parameter ID is understood, but content is wrong or corrupted. + AVRCP_STATUS_INTERNAL_ERROR, // Sent if there are error conditions not covered by a more specific error code. + AVRCP_STATUS_SUCCESS, // Sent if the operation was successful. + AVRCP_STATUS_UID_CHANGED, // Sent if the UIDs on the device have changed. AVRCP_STATUS_RESERVED_6, AVRCP_STATUS_INVALID_DIRECTION, // The Direction parameter is invalid. Valid for command: Change Path AVRCP_STATUS_NOT_A_DIRECTORY, // The UID provided does not refer to a folder item. Valid for command: Change Path