Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC-Android
Manage
Activity
Members
Labels
Plan
Issues
530
Issue boards
Milestones
Wiki
Code
Merge requests
15
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC-Android
Commits
7f4bec23
There was an error fetching the commit references. Please try again later.
Commit
7f4bec23
authored
8 years ago
by
Geoffrey Métais
Browse files
Options
Downloads
Patches
Plain Diff
Change type value to allow masks
parent
bf0ed35f
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
medialibrary/src/org/videolan/medialibrary/media/MediaLibraryItem.java
+8
-8
8 additions, 8 deletions
...src/org/videolan/medialibrary/media/MediaLibraryItem.java
with
8 additions
and
8 deletions
medialibrary/src/org/videolan/medialibrary/media/MediaLibraryItem.java
+
8
−
8
View file @
7f4bec23
...
...
@@ -8,14 +8,14 @@ import org.videolan.medialibrary.Medialibrary;
public
abstract
class
MediaLibraryItem
implements
Parcelable
{
public
static
final
int
TYPE_ALBUM
=
0
;
public
static
final
int
TYPE_ARTIST
=
1
;
public
static
final
int
TYPE_GENRE
=
2
;
public
static
final
int
TYPE_PLAYLIST
=
3
;
public
static
final
int
TYPE_MEDIA
=
4
;
public
static
final
int
TYPE_DUMMY
=
5
;
public
static
final
int
TYPE_STORAGE
=
6
;
public
static
final
int
TYPE_HISTORY
=
7
;
public
static
final
int
TYPE_ALBUM
=
1
<<
1
;
public
static
final
int
TYPE_ARTIST
=
1
<<
2
;
public
static
final
int
TYPE_GENRE
=
1
<<
3
;
public
static
final
int
TYPE_PLAYLIST
=
1
<<
4
;
public
static
final
int
TYPE_MEDIA
=
1
<<
5
;
public
static
final
int
TYPE_DUMMY
=
1
<<
6
;
public
static
final
int
TYPE_STORAGE
=
1
<<
7
;
public
static
final
int
TYPE_HISTORY
=
1
<<
9
;
public
static
final
int
FLAG_NONE
=
0
;
public
static
final
int
FLAG_SELECTED
=
1
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment