From: Denis Kenzior <denkenz@gmail.com>
To: ofono@ofono.org
Subject: Re: [PATCH 4/5] handsfree-audio: Add function to get the codecs
Date: Fri, 05 Apr 2013 12:32:59 -0500 [thread overview]
Message-ID: <515F0ACB.6080408@gmail.com> (raw)
In-Reply-To: <1365031481-10467-4-git-send-email-vinicius.gomes@openbossa.org>
[-- Attachment #1: Type: text/plain, Size: 2049 bytes --]
Hi Vinicius,
On 04/03/2013 06:24 PM, Vinicius Costa Gomes wrote:
> From: Claudio Takahasi<claudio.takahasi@openbossa.org>
>
> This patch adds a new handsfree-audio public function to read the
> available codecs registered by the agent.
> ---
> include/handsfree-audio.h | 1 +
> src/handsfree-audio.c | 13 +++++++++++++
> 2 files changed, 14 insertions(+)
Please split up these two patches according to our patch submission
guidelines.
>
> diff --git a/include/handsfree-audio.h b/include/handsfree-audio.h
> index 49b0605..f8a731f 100644
> --- a/include/handsfree-audio.h
> +++ b/include/handsfree-audio.h
> @@ -48,6 +48,7 @@ struct ofono_handsfree_card *ofono_handsfree_card_create(unsigned int vendor,
> void *data);
> int ofono_handsfree_card_register(struct ofono_handsfree_card *card);
> void ofono_handsfree_card_remove(struct ofono_handsfree_card *card);
> +int ofono_handsfree_get_codecs(unsigned char *buffer, int buffer_len);
This is confusing, there is an ofono_handsfree object already and this
is not related. Rename this into ofono_handsfree_audio_get_codecs.
>
> void ofono_handsfree_card_set_data(struct ofono_handsfree_card *card,
> void *data);
> diff --git a/src/handsfree-audio.c b/src/handsfree-audio.c
> index 3f24a2a..d1a22db 100644
> --- a/src/handsfree-audio.c
> +++ b/src/handsfree-audio.c
> @@ -541,6 +541,19 @@ void ofono_handsfree_card_remove(struct ofono_handsfree_card *card)
> g_free(card);
> }
>
> +int ofono_handsfree_get_codecs(unsigned char *buffer, int buffer_len)
> +{
> + int len;
> +
> + if (agent == NULL)
> + return -EIO;
> +
> + len = MIN(buffer_len, agent->codecs_len);
> + memcpy(buffer, agent->codecs, len);
> +
> + return len;
> +}
> +
Do we really want to memcpy here or return a const unsigned char array?
Also, right now we explicitly only support CVSD and mSBC, so this is
overkill.
> static void agent_free(struct agent *agent)
> {
> if (agent->watch> 0)
Regards,
-Denis
next prev parent reply other threads:[~2013-04-05 17:32 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-04-03 23:24 [PATCH 1/5] hfp_hf_bluez5: Add extracting version Vinicius Costa Gomes
2013-04-03 23:24 ` [PATCH 2/5] hfp_hf_bluez5: Add audio card .connect() for HFP 1.6 Vinicius Costa Gomes
2013-04-05 17:22 ` Denis Kenzior
2013-04-05 18:45 ` Vinicius Costa Gomes
2013-04-03 23:24 ` [PATCH 3/5] hfp_hf_bluez5: Select the audio card driver based on version Vinicius Costa Gomes
2013-04-05 17:33 ` Denis Kenzior
2013-04-03 23:24 ` [PATCH 4/5] handsfree-audio: Add function to get the codecs Vinicius Costa Gomes
2013-04-05 17:32 ` Denis Kenzior [this message]
2013-04-05 20:56 ` Vinicius Costa Gomes
2013-04-05 21:40 ` Denis Kenzior
2013-04-05 22:00 ` Vinicius Costa Gomes
2013-04-03 23:24 ` [PATCH 5/5] hfpmodem: Send AT+BAC with the supported codecs Vinicius Costa Gomes
2013-04-05 17:22 ` [PATCH 1/5] hfp_hf_bluez5: Add extracting version Denis Kenzior
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=515F0ACB.6080408@gmail.com \
--to=denkenz@gmail.com \
--cc=ofono@ofono.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.