From: Lucas De Marchi <lucas.demarchi@profusion.mobi>
To: David Stockwell <dstockwell@frequency-one.com>
Cc: linux-bluetooth@vger.kernel.org, johan.hedberg@gmail.com
Subject: Re: [PATCH 2/3] AVRCP: Metadata item #7 should return TrackDuration
Date: Wed, 24 Aug 2011 12:02:09 -0300 [thread overview]
Message-ID: <20110824150209.GA11862@vigoh> (raw)
In-Reply-To: <201108240805.59288.dstockwell@frequency-one.com>
Hi David,
* David Stockwell <dstockwell@frequency-one.com> [2011-08-24 08:05:59 -0500]:
> [PATCH 2/3] AVRCP: Metadata item #7 should return TrackDuration
>
> Should be total playing time of the track (TrackDuration)
> in msec, not current position within track.
> ---
> audio/control.c | 21 ++++++++-------------
> 1 files changed, 8 insertions(+), 13 deletions(-)
>
> diff --git a/audio/control.c b/audio/control.c
> index be95c19..eb86029 100644
> --- a/audio/control.c
> +++ b/audio/control.c
> @@ -194,7 +194,8 @@ 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,
> + MEDIA_INFO_LAST,
> };
>
> static DBusConnection *connection = NULL;
> @@ -928,19 +929,13 @@ static int mp_get_media_attribute(struct media_player
> *mp,
> len = strlen(valstr);
> memcpy(elem->val, valstr, len);
> break;
> - case MEDIA_INFO_CURRENT_POSITION:
> - if (mi->elapsed != 0xFFFFFFFF) {
> - uint32_t elapsed;
> -
> - mp_get_playback_status(mp, NULL, &elapsed, NULL);
> -
> - snprintf(valstr, 20, "%u", elapsed);
> - len = strlen(valstr);
> - memcpy(elem->val, valstr, len);
> - } else {
> + case MEDIA_INFO_PLAYING_TIME:
> + if (!mi->track_len)
track_len is initialized with 0xFFFFFFFF, because as per spec when it
has this value it means it's not available (see media_info_init())
Otherwise seems good.
regards,
Lucas De Marchi
next prev parent reply other threads:[~2011-08-24 15:02 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-08-24 13:05 [PATCH 2/3] AVRCP: Metadata item #7 should return TrackDuration David Stockwell
2011-08-24 15:02 ` Lucas De Marchi [this message]
-- strict thread matches above, loose matches on Subject: below --
2011-08-24 3:25 David Stockwell
2011-08-24 8:30 ` Johan Hedberg
2011-08-24 12:39 ` David Stockwell
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=20110824150209.GA11862@vigoh \
--to=lucas.demarchi@profusion.mobi \
--cc=dstockwell@frequency-one.com \
--cc=johan.hedberg@gmail.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).