mirror of
https://github.com/samsonjs/media.git
synced 2026-03-25 09:25:53 +00:00
Add missing IntDef annotation
PiperOrigin-RevId: 599414024
This commit is contained in:
parent
1ec193883c
commit
e730feb98a
2 changed files with 2 additions and 2 deletions
2
api.txt
2
api.txt
|
|
@ -763,7 +763,7 @@ package androidx.media3.common {
|
|||
method @Deprecated public void setDeviceMuted(boolean);
|
||||
method public void setDeviceMuted(boolean, @androidx.media3.common.C.VolumeFlags int);
|
||||
method @Deprecated public void setDeviceVolume(@IntRange(from=0) int);
|
||||
method public void setDeviceVolume(@IntRange(from=0) int, int);
|
||||
method public void setDeviceVolume(@IntRange(from=0) int, @androidx.media3.common.C.VolumeFlags int);
|
||||
method public void setMediaItem(androidx.media3.common.MediaItem);
|
||||
method public void setMediaItem(androidx.media3.common.MediaItem, boolean);
|
||||
method public void setMediaItem(androidx.media3.common.MediaItem, long);
|
||||
|
|
|
|||
|
|
@ -3462,7 +3462,7 @@ public interface Player {
|
|||
* @param volume The volume to set.
|
||||
* @param flags Either 0 or a bitwise combination of one or more {@link C.VolumeFlags}.
|
||||
*/
|
||||
void setDeviceVolume(@IntRange(from = 0) int volume, int flags);
|
||||
void setDeviceVolume(@IntRange(from = 0) int volume, @C.VolumeFlags int flags);
|
||||
|
||||
/**
|
||||
* @deprecated Use {@link #increaseDeviceVolume(int)} instead.
|
||||
|
|
|
|||
Loading…
Reference in a new issue