* [PATCH] avrcp: Handle of GetPlayerApplicationSettingAttributeText pdu
@ 2012-03-21 6:04 Chethan T N
2012-03-22 1:11 ` Lucas De Marchi
0 siblings, 1 reply; 6+ messages in thread
From: Chethan T N @ 2012-03-21 6:04 UTC (permalink / raw)
To: linux-bluetooth; +Cc: Chethan T N
Support for TG role GetPlayerApplicationSettingAttributeText added
to pass PTS test case TP/PAS/BV-04-C
---
audio/avrcp.c | 93 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
1 files changed, 92 insertions(+), 1 deletions(-)
diff --git a/audio/avrcp.c b/audio/avrcp.c
index c9ec314..b09a777 100644
--- a/audio/avrcp.c
+++ b/audio/avrcp.c
@@ -800,6 +800,97 @@ err:
return AVC_CTYPE_REJECTED;
}
+static const char *attr_to_str(uint8_t attr)
+{
+ switch (attr) {
+ case AVRCP_ATTRIBUTE_EQUALIZER:
+ return "Equalizer";
+ case AVRCP_ATTRIBUTE_REPEAT_MODE:
+ return "Repeat";
+ case AVRCP_ATTRIBUTE_SHUFFLE:
+ return "Shuffle";
+ case AVRCP_ATTRIBUTE_SCAN:
+ return "Scan";
+ }
+
+ return NULL;
+}
+
+static uint8_t avrcp_handle_get_player_attribute_text(struct avrcp_player *player,
+ struct avrcp_header *pdu,
+ uint8_t transaction)
+{
+ uint16_t len = ntohs(pdu->params_len);
+ uint8_t *settings = NULL;
+ unsigned int i = 0;
+ uint8_t no_of_attr = 0;
+ const char *attstr = NULL;
+
+ if (player == NULL || len <= 1 || pdu->params[0] != len - 1)
+ goto err;
+
+ /*
+ * Save a copy of requested settings because we can override them
+ * while responding
+ */
+ settings = g_memdup(&pdu->params[1], pdu->params[0]);
+ len = 0;
+
+ /*
+ * From sec. 5.7 of AVRCP 1.3 spec, we should ignore non-existent IDs
+ * and send a response with the existent ones.
+ */
+ for (i = 0; i < pdu->params[0]; i++) {
+
+ if (settings[i] < AVRCP_ATTRIBUTE_EQUALIZER ||
+ settings[i] > AVRCP_ATTRIBUTE_SCAN) {
+ DBG("Ignoring %u", settings[i]);
+ continue;
+ }
+
+ if (player_get_attribute(player, settings[i]) < 0)
+ continue;
+
+ /*
+ * No of attributes that are supported by the player
+ */
+ no_of_attr++;
+ pdu->params[++len] = settings[i];
+
+ /*
+ * As per the MIBenum defined in IANA character set
+ * document the value of displayable UTF-8 charater set
+ * value is 0x006A
+ */
+ pdu->params[++len] = 0x00;
+ pdu->params[++len] = 0x6A;
+ attstr = attr_to_str(settings[i]);
+
+ if (NULL != attstr) {
+ pdu->params[++len] = strlen(attstr);
+ len = len + 1;
+ strncpy((char *) (pdu->params + len), attstr, strlen(attstr));
+ len = len + strlen(attstr);
+ }
+ }
+
+ g_free(settings);
+
+ if (len) {
+ pdu->params[0] = no_of_attr;
+ pdu->params_len = htons(len + 1);
+
+ return AVC_CTYPE_STABLE;
+ }
+
+ error("No valid attributes in request");
+
+err:
+ pdu->params_len = htons(1);
+ pdu->params[0] = E_INVALID_PARAM;
+ return AVC_CTYPE_REJECTED;
+}
+
static uint8_t avrcp_handle_displayable_charset(struct avrcp_player *player,
struct avrcp_header *pdu,
uint8_t transaction)
@@ -1015,7 +1106,7 @@ static struct pdu_handler {
{ AVRCP_SET_PLAYER_VALUE, AVC_CTYPE_CONTROL,
avrcp_handle_set_player_value },
{ AVRCP_GET_PLAYER_ATTRIBUTE_TEXT, AVC_CTYPE_STATUS,
- NULL },
+ avrcp_handle_get_player_attribute_text },
{ AVRCP_GET_PLAYER_VALUE_TEXT, AVC_CTYPE_STATUS,
NULL },
{ AVRCP_DISPLAYABLE_CHARSET, AVC_CTYPE_STATUS,
--
1.7.5.4
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [PATCH] avrcp: Handle of GetPlayerApplicationSettingAttributeText pdu
2012-03-21 6:04 [PATCH] avrcp: Handle of GetPlayerApplicationSettingAttributeText pdu Chethan T N
@ 2012-03-22 1:11 ` Lucas De Marchi
2012-03-28 2:47 ` chethan.tn
0 siblings, 1 reply; 6+ messages in thread
From: Lucas De Marchi @ 2012-03-22 1:11 UTC (permalink / raw)
To: Chethan T N; +Cc: linux-bluetooth
Hi Chethan,
On Wed, Mar 21, 2012 at 3:04 AM, Chethan T N <chethan.tn@samsung.com> wrote:
> Support for TG role GetPlayerApplicationSettingAttributeText added
> to pass PTS test case TP/PAS/BV-04-C
> ---
> audio/avrcp.c | 93 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
> 1 files changed, 92 insertions(+), 1 deletions(-)
I started reviewing this and it looked very familiar to me, including
the comments... It turned out that this implementation is very similar
to avrcp_handle_get_current_player_value() and then it made me wonder
why I didn't implement it last year. See comment below.
>
> diff --git a/audio/avrcp.c b/audio/avrcp.c
> index c9ec314..b09a777 100644
> --- a/audio/avrcp.c
> +++ b/audio/avrcp.c
> @@ -800,6 +800,97 @@ err:
> return AVC_CTYPE_REJECTED;
> }
>
> +static const char *attr_to_str(uint8_t attr)
> +{
> + switch (attr) {
> + case AVRCP_ATTRIBUTE_EQUALIZER:
> + return "Equalizer";
> + case AVRCP_ATTRIBUTE_REPEAT_MODE:
> + return "Repeat";
> + case AVRCP_ATTRIBUTE_SHUFFLE:
> + return "Shuffle";
> + case AVRCP_ATTRIBUTE_SCAN:
> + return "Scan";
> + }
> +
> + return NULL;
> +}
We can't have these values hardcoded here. CT is asking the TG: "what
should I display in my pane?" - it's meaningless to answer this since
CT already knows that for the settings from the spec.
See section 5.2.5 of AVRCP 1.3 spec:
"NOTE: This command is expected to be used only for extended attributes for menu
navigation. It is assumed that all <attribute, value> pairs used for
menu extensions are
statically defined by TG."
Therefore we should only implement that for settings that extend the
"default ones". If you want that, take a look in the comments below
(besides having to extend the current API for getting values, etc).
> +
> +static uint8_t avrcp_handle_get_player_attribute_text(struct avrcp_player *player,
> + struct avrcp_header *pdu,
> + uint8_t transaction)
> +{
> + uint16_t len = ntohs(pdu->params_len);
> + uint8_t *settings = NULL;
> + unsigned int i = 0;
> + uint8_t no_of_attr = 0;
> + const char *attstr = NULL;
Review useless initialization...
> +
> + if (player == NULL || len <= 1 || pdu->params[0] != len - 1)
> + goto err;
> +
> + /*
> + * Save a copy of requested settings because we can override them
> + * while responding
> + */
> + settings = g_memdup(&pdu->params[1], pdu->params[0]);
> + len = 0;
> +
> + /*
> + * From sec. 5.7 of AVRCP 1.3 spec, we should ignore non-existent IDs
> + * and send a response with the existent ones.
> + */
> + for (i = 0; i < pdu->params[0]; i++) {
> +
> + if (settings[i] < AVRCP_ATTRIBUTE_EQUALIZER ||
> + settings[i] > AVRCP_ATTRIBUTE_SCAN) {
> + DBG("Ignoring %u", settings[i]);
> + continue;
> + }
We would change this loop and pass the setting to player.
> +
> + if (player_get_attribute(player, settings[i]) < 0)
> + continue;
You are asking the value of that setting to the player only to know if
player supports that setting. But you actually have to respond with
the _name_ of the key. Pretty confusing here. We should ask the _name_
of the key, not its value.
> +
> + /*
> + * No of attributes that are supported by the player
> + */
> + no_of_attr++;
> + pdu->params[++len] = settings[i];
> +
> + /*
> + * As per the MIBenum defined in IANA character set
> + * document the value of displayable UTF-8 charater set
> + * value is 0x006A
> + */
> + pdu->params[++len] = 0x00;
> + pdu->params[++len] = 0x6A;
> + attstr = attr_to_str(settings[i]);
> +
> + if (NULL != attstr) {
reverse order...
and you already incremented no_of_attr, CT will be very confused
> + pdu->params[++len] = strlen(attstr);
1
> + len = len + 1;
> + strncpy((char *) (pdu->params + len), attstr, strlen(attstr));
2
> + len = len + strlen(attstr);
3
3 calls to strlen() ( + 1 inside strncpy()).... not good - cache it in
variable and use that instead (in this case it could even be hardcoded
in attr_to_str(), but this can't be as is because of the first comment
above..
Regards,
Lucas De Marchi
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH] avrcp: Handle of GetPlayerApplicationSettingAttributeText pdu
2012-03-22 1:11 ` Lucas De Marchi
@ 2012-03-28 2:47 ` chethan.tn
0 siblings, 0 replies; 6+ messages in thread
From: chethan.tn @ 2012-03-28 2:47 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: linux-bluetooth
Hi,
--------------------------------------------------
From: "Lucas De Marchi" <lucas.demarchi@profusion.mobi>
Sent: Thursday, March 22, 2012 6:41 AM
To: "Chethan T N" <chethan.tn@samsung.com>
Cc: <linux-bluetooth@vger.kernel.org>
Subject: Re: [PATCH] avrcp: Handle of
GetPlayerApplicationSettingAttributeText pdu
> Hi Chethan,
>
> On Wed, Mar 21, 2012 at 3:04 AM, Chethan T N <chethan.tn@samsung.com>
> wrote:
>> Support for TG role GetPlayerApplicationSettingAttributeText added
>> to pass PTS test case TP/PAS/BV-04-C
>> ---
>> audio/avrcp.c | 93
>> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
>> 1 files changed, 92 insertions(+), 1 deletions(-)
>
> I started reviewing this and it looked very familiar to me, including
> the comments... It turned out that this implementation is very similar
> to avrcp_handle_get_current_player_value() and then it made me wonder
> why I didn't implement it last year. See comment below.
>
>
>>
>> diff --git a/audio/avrcp.c b/audio/avrcp.c
>> index c9ec314..b09a777 100644
>> --- a/audio/avrcp.c
>> +++ b/audio/avrcp.c
>> @@ -800,6 +800,97 @@ err:
>> return AVC_CTYPE_REJECTED;
>> }
>>
>> +static const char *attr_to_str(uint8_t attr)
>> +{
>> + switch (attr) {
>> + case AVRCP_ATTRIBUTE_EQUALIZER:
>> + return "Equalizer";
>> + case AVRCP_ATTRIBUTE_REPEAT_MODE:
>> + return "Repeat";
>> + case AVRCP_ATTRIBUTE_SHUFFLE:
>> + return "Shuffle";
>> + case AVRCP_ATTRIBUTE_SCAN:
>> + return "Scan";
>> + }
>> +
>> + return NULL;
>> +}
>
> We can't have these values hardcoded here. CT is asking the TG: "what
> should I display in my pane?" - it's meaningless to answer this since
> CT already knows that for the settings from the spec.
>
ok. I agree for the default settings like Equalizer, Shuffle, Repeat and
Scan values TG need
not to send to CT.
> See section 5.2.5 of AVRCP 1.3 spec:
>
> "NOTE: This command is expected to be used only for extended attributes
> for menu
> navigation. It is assumed that all <attribute, value> pairs used for
> menu extensions are
> statically defined by TG."
>
ok, But the <attribute, value> pair for extended attributes may vary for
different TG's.
So TG application register their extended attributes to bluez, and when CT
requests for
these values TG shall send the <attribute, value> based on the attribute ID.
> Therefore we should only implement that for settings that extend the
> "default ones". If you want that, take a look in the comments below
> (besides having to extend the current API for getting values, etc).
>
>
>> +
>> +static uint8_t avrcp_handle_get_player_attribute_text(struct
>> avrcp_player *player,
>> + struct avrcp_header *pdu,
>> + uint8_t transaction)
>> +{
>> + uint16_t len = ntohs(pdu->params_len);
>> + uint8_t *settings = NULL;
>> + unsigned int i = 0;
>> + uint8_t no_of_attr = 0;
>> + const char *attstr = NULL;
>
> Review useless initialization...
I will modify the initializations.
>
>
>> +
>> + if (player == NULL || len <= 1 || pdu->params[0] != len - 1)
>> + goto err;
>> +
>> + /*
>> + * Save a copy of requested settings because we can override them
>> + * while responding
>> + */
>> + settings = g_memdup(&pdu->params[1], pdu->params[0]);
>> + len = 0;
>> +
>> + /*
>> + * From sec. 5.7 of AVRCP 1.3 spec, we should ignore non-existent
>> IDs
>> + * and send a response with the existent ones.
>> + */
>> + for (i = 0; i < pdu->params[0]; i++) {
>> +
>> + if (settings[i] < AVRCP_ATTRIBUTE_EQUALIZER ||
>> + settings[i] >
>> AVRCP_ATTRIBUTE_SCAN) {
>> + DBG("Ignoring %u", settings[i]);
>> + continue;
>> + }
>
> We would change this loop and pass the setting to player.
ok.
>
>> +
>> + if (player_get_attribute(player, settings[i]) < 0)
>> + continue;
>
> You are asking the value of that setting to the player only to know if
> player supports that setting. But you actually have to respond with
> the _name_ of the key. Pretty confusing here. We should ask the _name_
> of the key, not its value.
ok, I will modify based on the _name_.
>
>> +
>> + /*
>> + * No of attributes that are supported by the player
>> + */
>> + no_of_attr++;
>> + pdu->params[++len] = settings[i];
>> +
>> + /*
>> + * As per the MIBenum defined in IANA character set
>> + * document the value of displayable UTF-8 charater set
>> + * value is 0x006A
>> + */
>> + pdu->params[++len] = 0x00;
>> + pdu->params[++len] = 0x6A;
>> + attstr = attr_to_str(settings[i]);
>> +
>> + if (NULL != attstr) {
> reverse order...
>
> and you already incremented no_of_attr, CT will be very confused
ok, I will modify the increment of no_of_attr after copying the _name_.
>
>> + pdu->params[++len] = strlen(attstr);
>
> 1
>
>> + len = len + 1;
>> + strncpy((char *) (pdu->params + len), attstr,
>> strlen(attstr));
>
> 2
>
>> + len = len + strlen(attstr);
>
> 3
>
> 3 calls to strlen() ( + 1 inside strncpy()).... not good - cache it in
> variable and use that instead (in this case it could even be hardcoded
> in attr_to_str(), but this can't be as is because of the first comment
> above..
>
ok. I will modify.
>
> Regards,
> Lucas De Marchi
Thanks and Regards
Chethan
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] avrcp: Handle of GetPlayerApplicationSettingAttributeText pdu
@ 2012-03-21 5:56 CHETHAN TN
2012-03-21 17:23 ` Luiz Augusto von Dentz
0 siblings, 1 reply; 6+ messages in thread
From: CHETHAN TN @ 2012-03-21 5:56 UTC (permalink / raw)
To: linux-bluetooth@vger.kernel.org
SGksDQoNCi0tLS0tLS0gT3JpZ2luYWwgTWVzc2FnZSAtLS0tLS0tDQpTZW5kZXIgOiBDSEVUSEFO
IFROPGNoZXRoYW4udG5Ac2Ftc3VuZy5jb20+IExlYWQgRW5naW5lZXIvU0lTTy1TTFAvU2Ftc3Vu
ZyBFbGVjdHJvbmljcw0KRGF0ZSA6IE1hciAyMSwgMjAxMiAxMTozNCAoR01UKzA1OjMwKQ0KVGl0
bGUgOiBbUEFUQ0hdIGF2cmNwOiBIYW5kbGUgb2YgR2V0UGxheWVyQXBwbGljYXRpb25TZXR0aW5n
QXR0cmlidXRlVGV4dCBwZHUNCg0KU3VwcG9ydCBmb3IgVEcgcm9sZSBHZXRQbGF5ZXJBcHBsaWNh
dGlvblNldHRpbmdBdHRyaWJ1dGVUZXh0IGFkZGVkDQp0byBwYXNzIFBUUyB0ZXN0IGNhc2UgVFAv
UEFTL0JWLTA0LUMNCi0tLQ0KYXVkaW8vYXZyY3AuYyB8ICAgOTMgKysrKysrKysrKysrKysrKysr
KysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKystDQoxIGZpbGVzIGNoYW5nZWQs
IDkyIGluc2VydGlvbnMoKyksIDEgZGVsZXRpb25zKC0pDQoNCmRpZmYgLS1naXQgYS9hdWRpby9h
dnJjcC5jIGIvYXVkaW8vYXZyY3AuYw0KaW5kZXggYzllYzMxNC4uYjA5YTc3NyAxMDA2NDQNCi0t
LSBhL2F1ZGlvL2F2cmNwLmMNCisrKyBiL2F1ZGlvL2F2cmNwLmMNCkBAIC04MDAsNiArODAwLDk3
IEBAIGVycjoNCnJldHVybiBBVkNfQ1RZUEVfUkVKRUNURUQ7DQp9DQoNCitzdGF0aWMgY29uc3Qg
Y2hhciAqYXR0cl90b19zdHIodWludDhfdCBhdHRyKQ0KK3sNCisgc3dpdGNoIChhdHRyKSB7DQor
IGNhc2UgQVZSQ1BfQVRUUklCVVRFX0VRVUFMSVpFUjoNCisgcmV0dXJuICJFcXVhbGl6ZXIiOw0K
KyBjYXNlIEFWUkNQX0FUVFJJQlVURV9SRVBFQVRfTU9ERToNCisgcmV0dXJuICJSZXBlYXQiOw0K
KyBjYXNlIEFWUkNQX0FUVFJJQlVURV9TSFVGRkxFOg0KKyByZXR1cm4gIlNodWZmbGUiOw0KKyBj
YXNlIEFWUkNQX0FUVFJJQlVURV9TQ0FOOg0KKyByZXR1cm4gIlNjYW4iOw0KKyB9DQorDQorIHJl
dHVybiBOVUxMOw0KK30NCisNCitzdGF0aWMgdWludDhfdCBhdnJjcF9oYW5kbGVfZ2V0X3BsYXll
cl9hdHRyaWJ1dGVfdGV4dChzdHJ1Y3QgYXZyY3BfcGxheWVyICpwbGF5ZXIsDQorIHN0cnVjdCBh
dnJjcF9oZWFkZXIgKnBkdSwNCisgdWludDhfdCB0cmFuc2FjdGlvbikNCit7DQorIHVpbnQxNl90
IGxlbiA9IG50b2hzKHBkdS0+cGFyYW1zX2xlbik7DQorIHVpbnQ4X3QgKnNldHRpbmdzID0gTlVM
TDsNCisgdW5zaWduZWQgaW50IGkgPSAwOw0KKyB1aW50OF90IG5vX29mX2F0dHIgPSAwOw0KKyBj
b25zdCBjaGFyICphdHRzdHIgPSBOVUxMOw0KKw0KKyBpZiAocGxheWVyID09IE5VTEwgfHwgbGVu
IDw9IDEgfHwgcGR1LT5wYXJhbXNbMF0gIT0gbGVuIC0gMSkNCisgZ290byBlcnI7DQorDQorIC8q
DQorICogU2F2ZSBhIGNvcHkgb2YgcmVxdWVzdGVkIHNldHRpbmdzIGJlY2F1c2Ugd2UgY2FuIG92
ZXJyaWRlIHRoZW0NCisgKiB3aGlsZSByZXNwb25kaW5nDQorICovDQorIHNldHRpbmdzID0gZ19t
ZW1kdXAoJnBkdS0+cGFyYW1zWzFdLCBwZHUtPnBhcmFtc1swXSk7DQorIGxlbiA9IDA7DQorDQor
IC8qDQorICogRnJvbSBzZWMuIDUuNyBvZiBBVlJDUCAxLjMgc3BlYywgd2Ugc2hvdWxkIGlnbm9y
ZSBub24tZXhpc3RlbnQgSURzDQorICogYW5kIHNlbmQgYSByZXNwb25zZSB3aXRoIHRoZSBleGlz
dGVudCBvbmVzLg0KKyAqLw0KKyBmb3IgKGkgPSAwOyBpIDwgcGR1LT5wYXJhbXNbMF07IGkrKykg
ew0KKw0KKyBpZiAoc2V0dGluZ3NbaV0gPCBBVlJDUF9BVFRSSUJVVEVfRVFVQUxJWkVSIHx8DQor
IHNldHRpbmdzW2ldID4gQVZSQ1BfQVRUUklCVVRFX1NDQU4pIHsNCisgREJHKCJJZ25vcmluZyAl
dSIsIHNldHRpbmdzW2ldKTsNCisgY29udGludWU7DQorIH0NCisNCisgaWYgKHBsYXllcl9nZXRf
YXR0cmlidXRlKHBsYXllciwgc2V0dGluZ3NbaV0pIDwgMCkNCisgY29udGludWU7DQorDQorIC8q
DQorICogTm8gb2YgYXR0cmlidXRlcyB0aGF0IGFyZSBzdXBwb3J0ZWQgYnkgdGhlIHBsYXllcg0K
KyAqLw0KKyBub19vZl9hdHRyKys7DQorIHBkdS0+cGFyYW1zWysrbGVuXSA9IHNldHRpbmdzW2ld
Ow0KKw0KKyAvKg0KKyAqIEFzIHBlciB0aGUgTUlCZW51bSBkZWZpbmVkIGluIElBTkEgY2hhcmFj
dGVyIHNldA0KKyAqIGRvY3VtZW50IHRoZSB2YWx1ZSBvZiBkaXNwbGF5YWJsZSBVVEYtOCBjaGFy
YXRlciBzZXQNCisgKiB2YWx1ZSBpcyAweDAwNkENCisgKi8NCisgcGR1LT5wYXJhbXNbKytsZW5d
ID0gMHgwMDsNCisgcGR1LT5wYXJhbXNbKytsZW5dID0gMHg2QTsNCisgYXR0c3RyID0gYXR0cl90
b19zdHIoc2V0dGluZ3NbaV0pOw0KKw0KKyBpZiAoTlVMTCAhPSBhdHRzdHIpIHsNCisgcGR1LT5w
YXJhbXNbKytsZW5dID0gc3RybGVuKGF0dHN0cik7DQorIGxlbiA9IGxlbiArIDE7DQorIHN0cm5j
cHkoKGNoYXIgKikgKHBkdS0+cGFyYW1zICsgbGVuKSwgYXR0c3RyLCBzdHJsZW4oYXR0c3RyKSk7
DQorIGxlbiA9IGxlbiArIHN0cmxlbihhdHRzdHIpOw0KKyB9DQorIH0NCisNCisgZ19mcmVlKHNl
dHRpbmdzKTsNCisNCisgaWYgKGxlbikgew0KKyBwZHUtPnBhcmFtc1swXSA9IG5vX29mX2F0dHI7
DQorIHBkdS0+cGFyYW1zX2xlbiA9IGh0b25zKGxlbiArIDEpOw0KKw0KKyByZXR1cm4gQVZDX0NU
WVBFX1NUQUJMRTsNCisgfQ0KKw0KKyBlcnJvcigiTm8gdmFsaWQgYXR0cmlidXRlcyBpbiByZXF1
ZXN0Iik7DQorDQorZXJyOg0KKyBwZHUtPnBhcmFtc19sZW4gPSBodG9ucygxKTsNCisgcGR1LT5w
YXJhbXNbMF0gPSBFX0lOVkFMSURfUEFSQU07DQorIHJldHVybiBBVkNfQ1RZUEVfUkVKRUNURUQ7
DQorfQ0KKw0Kc3RhdGljIHVpbnQ4X3QgYXZyY3BfaGFuZGxlX2Rpc3BsYXlhYmxlX2NoYXJzZXQo
c3RydWN0IGF2cmNwX3BsYXllciAqcGxheWVyLA0Kc3RydWN0IGF2cmNwX2hlYWRlciAqcGR1LA0K
dWludDhfdCB0cmFuc2FjdGlvbikNCkBAIC0xMDE1LDcgKzExMDYsNyBAQCBzdGF0aWMgc3RydWN0
IHBkdV9oYW5kbGVyIHsNCnsgQVZSQ1BfU0VUX1BMQVlFUl9WQUxVRSwgQVZDX0NUWVBFX0NPTlRS
T0wsDQphdnJjcF9oYW5kbGVfc2V0X3BsYXllcl92YWx1ZSB9LA0KeyBBVlJDUF9HRVRfUExBWUVS
X0FUVFJJQlVURV9URVhULCBBVkNfQ1RZUEVfU1RBVFVTLA0KLSBOVUxMIH0sDQorIGF2cmNwX2hh
bmRsZV9nZXRfcGxheWVyX2F0dHJpYnV0ZV90ZXh0IH0sDQp7IEFWUkNQX0dFVF9QTEFZRVJfVkFM
VUVfVEVYVCwgQVZDX0NUWVBFX1NUQVRVUywNCk5VTEwgfSwNCnsgQVZSQ1BfRElTUExBWUFCTEVf
Q0hBUlNFVCwgQVZDX0NUWVBFX1NUQVRVUywNCi0tIA0KMS43LjUuNA0KDQpJbiB0aGUgYWJvdmUg
cGF0Y2ggdGhlIGZ1bmN0aW9uICJhdHRyX3RvX3N0ciIgaGF2ZSBiZWVuIHRha2VuIGZyb20gYXVk
aW8vbWVkaWEuYyBmaWxlLiANClNpbmNlIHRoZXJlIG1pZ3RoIGJlIGZldyBmdW5jdGlvbnMgdGhh
dCB3aWxsIGJlIHVzZWQgY29tbW9ubHkgaW4gYXVkaW8vYXZyY3AuYyBhbmQgYXVkaW8vbWVkaWEu
YyB3aHkgY2FuJ3QgDQpzdWNoIGZ1bnRpb25zIG1vdmVkIHRvIGEgY29tbW9uIGZpbGU/Lg0KDQpU
aGFua3MgYW5kIFJlZ2FyZHMNCkNoZXRoYW4NCi0tDQpUbyB1bnN1YnNjcmliZSBmcm9tIHRoaXMg
bGlzdDogc2VuZCB0aGUgbGluZSAidW5zdWJzY3JpYmUgbGludXgtYmx1ZXRvb3RoIiBpbg0KdGhl
IGJvZHkgb2YgYSBtZXNzYWdlIHRvIG1ham9yZG9tb0B2Z2VyLmtlcm5lbC5vcmcNCk1vcmUgbWFq
b3Jkb21vIGluZm8gYXQgIGh0dHA6Ly92Z2VyLmtlcm5lbC5vcmcvbWFqb3Jkb21vLWluZm8uaHRt
bA==
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] avrcp: Handle of GetPlayerApplicationSettingAttributeText pdu
2012-03-21 5:56 CHETHAN TN
@ 2012-03-21 17:23 ` Luiz Augusto von Dentz
2012-03-28 2:27 ` chethan.tn
0 siblings, 1 reply; 6+ messages in thread
From: Luiz Augusto von Dentz @ 2012-03-21 17:23 UTC (permalink / raw)
To: chethan.tn; +Cc: linux-bluetooth@vger.kernel.org
Hi,
On Wed, Mar 21, 2012 at 2:56 AM, CHETHAN TN <chethan.tn@samsung.com> wrote:
>
> In the above patch the function "attr_to_str" have been taken from audio/media.c file.
> Since there migth be few functions that will be used commonly in audio/avrcp.c and audio/media.c why can't
> such funtions moved to a common file?.
Actually we might want to handle this in media.c, so perhaps we can
reuse the callback to gets an attribute or create a new one to fetch
the text in case of this being dynamically, otherwise just have it
inline in avrcp.h might be fine.
--
Luiz Augusto von Dentz
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] avrcp: Handle of GetPlayerApplicationSettingAttributeText pdu
2012-03-21 17:23 ` Luiz Augusto von Dentz
@ 2012-03-28 2:27 ` chethan.tn
0 siblings, 0 replies; 6+ messages in thread
From: chethan.tn @ 2012-03-28 2:27 UTC (permalink / raw)
To: Luiz Augusto von Dentz; +Cc: linux-bluetooth
Hi,
--------------------------------------------------
From: "Luiz Augusto von Dentz" <luiz.dentz@gmail.com>
Sent: Wednesday, March 21, 2012 10:53 PM
To: <chethan.tn@samsung.com>
Cc: <linux-bluetooth@vger.kernel.org>
Subject: Re: [PATCH] avrcp: Handle of
GetPlayerApplicationSettingAttributeText pdu
> Hi,
>
> On Wed, Mar 21, 2012 at 2:56 AM, CHETHAN TN <chethan.tn@samsung.com>
> wrote:
>>
>> In the above patch the function "attr_to_str" have been taken from
>> audio/media.c file.
>> Since there migth be few functions that will be used commonly in
>> audio/avrcp.c and audio/media.c why can't
>> such funtions moved to a common file?.
>
> Actually we might want to handle this in media.c, so perhaps we can
> reuse the callback to gets an attribute or create a new one to fetch
> the text in case of this being dynamically, otherwise just have it
> inline in avrcp.h might be fine.
>
>
> --
> Luiz Augusto von Dentz
Thanks for you valuable information.
I agree on your suggestions and implement it as inline functions in avrcp.h.
Regards
Chethan
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2012-03-28 2:47 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-21 6:04 [PATCH] avrcp: Handle of GetPlayerApplicationSettingAttributeText pdu Chethan T N
2012-03-22 1:11 ` Lucas De Marchi
2012-03-28 2:47 ` chethan.tn
-- strict thread matches above, loose matches on Subject: below --
2012-03-21 5:56 CHETHAN TN
2012-03-21 17:23 ` Luiz Augusto von Dentz
2012-03-28 2:27 ` chethan.tn
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox