mirror of
https://github.com/Genymobile/scrcpy.git
synced 2026-04-21 01:33:36 +00:00
Use literal for MIMETYPE_VIDEO_AV1
This commit is contained in:
parent
fb3d09b7e3
commit
186a5fdcff
1 changed files with 1 additions and 1 deletions
|
|
@ -7,7 +7,7 @@ public enum VideoCodec implements Codec {
|
|||
H264(0x68_32_36_34, "h264", MediaFormat.MIMETYPE_VIDEO_AVC),
|
||||
H265(0x68_32_36_35, "h265", MediaFormat.MIMETYPE_VIDEO_HEVC),
|
||||
@SuppressLint("InlinedApi") // introduced in API 21
|
||||
AV1(0x00_61_76_31, "av1", MediaFormat.MIMETYPE_VIDEO_AV1);
|
||||
AV1(0x00_61_76_31, "av1", "video/av01");
|
||||
|
||||
private final int id; // 4-byte ASCII representation of the name
|
||||
private final String name;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue