OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:album
(Results
1 - 4
of
4
) sorted by null
/external/libmtp/examples/
albums.c
26
static void dump_albuminfo(LIBMTP_album_t *
album
)
28
printf("
Album
ID: %d\n",
album
->album_id);
29
printf(" Parent ID: %d\n",
album
->parent_id);
30
printf(" Name: %s\n",
album
->name);
31
printf(" Artist: %s\n",
album
->artist);
32
printf(" Composer: %s\n",
album
->composer);
33
printf(" Genre: %s\n",
album
->genre);
34
printf(" Tracks: %d\n\n",
album
->no_tracks);
57
LIBMTP_album_t *
album
;
local
[
all
...]
albumart.c
3
* Example program to send
album
art.
100
printf("You need to supply an
album
name.\n");
145
LIBMTP_album_t *
album
= LIBMTP_new_album_t();
local
146
album
->name = albumname;
147
album
->no_tracks = idcount;
148
album
->tracks = ids;
149
album
->parent_id = parentid;
150
album
->storage_id = storageid;
152
ret = LIBMTP_Create_New_Album(device,
album
);
154
ret = LIBMTP_Send_Representative_Sample(device,
album
->album_id, albumart)
[
all
...]
sendtr.c
56
fprintf(stderr, "-t <title> -a <artist> -A <
Album
artist> -w <writer or composer>\n");
57
fprintf(stderr, " -l <
album
> -c <codec> -g <genre> -n <track number> -y <year>\n");
92
LIBMTP_album_t *
album
;
local
97
/* Look for the
album
*/
98
album
= LIBMTP_Get_Album_List(device);
99
album_orig =
album
;
100
while(
album
!= NULL) {
101
if ((
album
->name != NULL &&
102
album
->artist != NULL &&
103
!strcmp(
album
->name, albuminfo->name) &
188
char artist[80],
album
artist[80], title[80], genre[80],
album
[80], composer[80];
local
[
all
...]
/development/samples/browseable/MediaBrowserService/src/com.example.android.mediabrowserservice/model/
MusicProvider.java
57
private static final String JSON_ALBUM = "
album
";
252
String
album
= json.getString(JSON_ALBUM);
local
281
.putString(MediaMetadata.METADATA_KEY_ALBUM,
album
)
Completed in 973 milliseconds