Searched refs:playlist (Results 1 – 10 of 10) sorted by relevance
/external/libmtp/examples/ |
D | newplaylist.c | 89 LIBMTP_playlist_t *playlist = LIBMTP_new_playlist_t(); in main() local 90 playlist->name = playlistname; in main() 91 playlist->no_tracks = idcount; in main() 92 playlist->tracks = ids; in main() 93 playlist->parent_id = 0; in main() 94 playlist->storage_id = 0; in main() 95 int ret = LIBMTP_Create_New_Playlist(device,playlist); in main() 102 printf("Created new playlist: %u\n", playlist->playlist_id); in main()
|
D | getplaylist.c | 52 LIBMTP_playlist_t *playlist; in main() local 81 playlist = LIBMTP_Get_Playlist(device,id); in main() 83 if (playlist != NULL) { in main() 84 dump_playlist(device,playlist); in main() 87 LIBMTP_destroy_playlist_t(playlist); in main()
|
/external/libmtp/libmtp.xcodeproj/ |
D | project.pbxproj | 20 …00305D71277B07D009FA3E1 /* playlist-spl.c in Sources */ = {isa = PBXBuildFile; fileRef = B00305C71… 21 …00305D81277B07D009FA3E1 /* playlist-spl.h in Headers */ = {isa = PBXBuildFile; fileRef = B00305C81… 74 … /* playlist-spl.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.… 75 … /* playlist-spl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.… 129 B00305C71277B07D009FA3E1 /* playlist-spl.c */, 130 B00305C81277B07D009FA3E1 /* playlist-spl.h */, 179 B00305D81277B07D009FA3E1 /* playlist-spl.h in Headers */, 266 B00305D71277B07D009FA3E1 /* playlist-spl.c in Sources */,
|
/external/libmtp/src/ |
D | Makefile.am | 2 libmtp_la_SOURCES=libmtp.c unicode.c unicode.h util.c util.h playlist-spl.c \ 5 music-players.h device-flags.h playlist-spl.h
|
D | libmtp.h.in | 585 /** Default playlist folder */ 653 uint32_t playlist_id; /**< Unique playlist ID */ 655 uint32_t storage_id; /**< ID of storage holding this playlist */ 656 char *name; /**< Name of playlist */ 657 uint32_t *tracks; /**< The tracks in this playlist */ 658 uint32_t no_tracks; /**< The number of tracks in this playlist */ 659 LIBMTP_playlist_t *next; /**< Next playlist or NULL if last playlist */ 666 uint32_t album_id; /**< Unique playlist ID */ 890 * @defgroup playlists The audio/video playlist management API.
|
D | Makefile.in | 78 am_libmtp_la_OBJECTS = libmtp.lo unicode.lo util.lo playlist-spl.lo \ 223 libmtp_la_SOURCES = libmtp.c unicode.c unicode.h util.c util.h playlist-spl.c \ 226 music-players.h device-flags.h playlist-spl.h 343 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/playlist-spl.Plo@am__quote@
|
D | libmtp.c | 6427 LIBMTP_playlist_t *playlist, const char* newname) argument 6431 ret = set_object_filename(device, playlist->playlist_id, 6439 free(playlist->name); 6440 playlist->name = strdup(newname); 6858 void LIBMTP_destroy_playlist_t(LIBMTP_playlist_t *playlist) argument 6860 if (playlist == NULL) { 6863 if (playlist->name != NULL) 6864 free(playlist->name); 6865 if (playlist->tracks != NULL) 6866 free(playlist->tracks); [all …]
|
/external/libmtp/ |
D | TODO | 70 objects during startup, track listing, file listing, playlist listing, 78 4. SPEED: Whenever we add an object (file, track, playlist...) we
|
D | ChangeLog | 14 so they work just as nicely as the track/playlist etc 237 * src/playlist-spl.c: 333 * src/playlist-spl.c: dito. 479 * src/playlist-spl.c: consequental changes. 586 * src/playlist-spl.c: added handling of Samsung's 587 proprietary .spl playlist format. 588 * src/playlist-spl.h: dito. 634 file, track, playlist or album struct to pass in 738 playlist extension. 742 Get the prefered playlist extension. [all …]
|
D | README | 464 that makes it drop the last two characters off a playlist name. 660 star-shaped pattern to all the files that are part of the album/playlist.
|