From: Johan Hedberg <johan.hedberg@gmail.com>
To: David Stockwell <dstockwell@frequency-one.com>
Cc: linux-bluetooth@vger.kernel.org
Subject: Re: [PATCH 3/3] AVRCP: Corrected metadata: Playing Time
Date: Mon, 22 Aug 2011 13:36:32 +0300 [thread overview]
Message-ID: <20110822103632.GC9949@dell> (raw)
In-Reply-To: <201108201753.32608.dstockwell@frequency-one.com>
Hi David,
On Sat, Aug 20, 2011, David Stockwell wrote:
> Metadata item #7 should return total playing time of the track (TrackDuration)
> in msec, not current position within the track.
>
> Signed-off-by: David Stockwell <dstockwell@frequency-one.com>
Please remove the signed-off-by (same in the other patches)
> ---
> audio/control.c | 22 ++++++++--------------
> 1 files changed, 8 insertions(+), 14 deletions(-)
>
> diff --git a/audio/control.c b/audio/control.c
> index 4e10cac..047e6ac 100644
> --- a/audio/control.c
> +++ b/audio/control.c
> @@ -196,7 +196,7 @@ enum media_info_id {
> MEDIA_INFO_TRACK = 4,
> MEDIA_INFO_N_TRACKS = 5,
> MEDIA_INFO_GENRE = 6,
> - MEDIA_INFO_CURRENT_POSITION = 7,
> + MEDIA_INFO_PLAYING_TIME = 7,
> };
Would it make sense to add a MEDIA_INFO_LAST to the end of the above
list and then instead of the following:
> - for (i = 1; i <= MEDIA_INFO_CURRENT_POSITION; i++) {
> + for (i = 1; i <= MEDIA_INFO_PLAYING_TIME; i++) {
> size = mp_get_media_attribute(control->mp, i,
> &pdu->params[pos]);
You'd have:
for (i = 1; i < MEDIA_INFO_LAST; i++) {
Seems more readable to me at least and it'd make it easier to add new
MEDIA_INFO types in the future (you only need to change the enum
definition and protect yourself against forgetting to update both
places).
Btw, it looked like this avrcp_handle_get_element_attributes function
might not be properly checking the amount of actually received data in
all necessary places before accessing the buffer (i.e. having the risk
of remotely triggered buffer overflows). Could you please verify this
and fix it if the issue really exists.
Johan
next prev parent reply other threads:[~2011-08-22 10:36 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-08-20 22:53 [PATCH 3/3] AVRCP: Corrected metadata: Playing Time David Stockwell
2011-08-22 10:36 ` Johan Hedberg [this message]
2011-08-22 11:58 ` David Stockwell
2011-08-22 14:42 ` Lucas De Marchi
[not found] ` <165376978.336156.1314031379433.JavaMail.open-xchange@oxusltgw02.schlund.de>
2011-08-22 19:55 ` Lucas De Marchi
2011-08-23 3:02 ` David Stockwell
2011-08-22 14:38 ` Lucas De Marchi
2011-08-22 14:31 ` Lucas De Marchi
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=20110822103632.GC9949@dell \
--to=johan.hedberg@gmail.com \
--cc=dstockwell@frequency-one.com \
--cc=linux-bluetooth@vger.kernel.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.