/external/libmtp/examples/ |
getplaylist.c | 52 LIBMTP_playlist_t *playlist; local 60 fprintf(stderr, "Just a playlist ID is required\n"); 64 // Sanity check playlist ID 70 fprintf(stderr, "bad playlist id %u\n", id); 81 playlist = LIBMTP_Get_Playlist(device,id); 83 if (playlist != NULL) { 84 dump_playlist(device,playlist); 87 LIBMTP_destroy_playlist_t(playlist);
|
newplaylist.c | 3 * Example program to create a playlist on a device. 72 printf("You need to supply a playlist name.\n"); 89 LIBMTP_playlist_t *playlist = LIBMTP_new_playlist_t(); local 90 playlist->name = playlistname; 91 playlist->no_tracks = idcount; 92 playlist->tracks = ids; 93 playlist->parent_id = 0; 94 playlist->storage_id = 0; 95 int ret = LIBMTP_Create_New_Playlist(device,playlist); 97 printf("Couldn't create playlist object\n") [all...] |
/frameworks/av/media/libstagefright/httplive/ |
HTTPDownloader.cpp | 254 // playlist unchanged 265 sp<M3UParser> playlist = local 268 if (playlist->initCheck() != OK) { 269 ALOGE("failed to parse .m3u8 playlist"); 274 return playlist;
|
PlaylistFetcher.cpp | 441 FLOGV("Need to refresh playlist in %lld", (long long)maxDelayUs); 596 sp<M3UParser> playlist = mHTTPDownloader->fetchPlaylist( local 601 notify->setObject("playlist", playlist); 785 // playlist refresh as it'll change seq numbers 807 // a playlist we might assume extra streams. 861 sp<M3UParser> playlist = mHTTPDownloader->fetchPlaylist( local 864 if (playlist == NULL) { 866 // We succeeded in fetching the playlist, but it was 873 ALOGE("failed to load playlist at url '%s'", uriDebugString(mURI).c_str()) [all...] |
/packages/apps/Music/src/com/android/music/ |
AlbumBrowserActivity.java | 151 // in the middle of specifying a playlist to add the item to. 323 long playlist = item.getIntent().getLongExtra("playlist", 0); local 324 MusicUtils.addToPlaylist(this, list, playlist);
|
ArtistAlbumBrowserActivity.java | 150 // in the middle of specifying a playlist to add the item to. 418 long playlist = item.getIntent().getLongExtra("playlist", 0); local 419 MusicUtils.addToPlaylist(this, list, playlist); [all...] |
MediaPlaybackActivity.java | 399 .putExtra("playlist", "nowplaying") 601 long playlist = item.getIntent().getLongExtra("playlist", 0); local 602 MusicUtils.addToPlaylist(this, list, playlist); 650 int playlist = Integer.parseInt(uri.getLastPathSegment()); local 651 MusicUtils.addToPlaylist(this, list, playlist); [all...] |
TrackBrowserActivity.java | 126 mPlaylist = icicle.getString("playlist"); 134 mPlaylist = intent.getStringExtra("playlist"); 351 // in the middle of specifying a playlist to add the item to. 355 outcicle.putString("playlist", mPlaylist); 532 // update a saved playlist 549 Log.d(LOGTAG, "No view when removing playlist item " + which); 705 long playlist = item.getIntent().getLongExtra("playlist", 0); local 706 MusicUtils.addToPlaylist(this, list, playlist); 820 // remove track from playlist [all...] |
MusicUtils.java | 404 * Fills out the given submenu with items for "new playlist" and 407 * the selected playlist, NEW_PLAYLIST if a new playlist 408 * should be created, and QUEUE if the "current playlist" was 434 intent.putExtra("playlist", cur.getLong(0)); 474 // step 1: remove selected tracks from the current playlist, as well 479 // remove from current playlist 539 * @param ids The source array containing all the ids to be added to the playlist 572 // need to determine the number of items currently in the playlist, 808 // figure out if we need to restart with a new playlist, 810 long [] playlist = sService.getQueue(); local [all...] |
/packages/providers/MediaProvider/src/com/android/providers/media/ |
MediaProvider.java | 4468 long playlist = Long.parseLong(segments.get(3)); local [all...] |
/packages/apps/TV/usbtuner/libs/ |
exoplayer_1.5.6.jar | |
/developers/build/prebuilts/androidtv/sample-inputs/app/libs/ |
exoplayer_dev-hls_20150123.jar | |