18 lines
201 B
Java
18 lines
201 B
Java
package com.genymobile.scrcpy;
|
|
|
|
public interface Codec {
|
|
|
|
enum Type {
|
|
VIDEO,
|
|
AUDIO,
|
|
}
|
|
|
|
Type getType();
|
|
|
|
int getId();
|
|
|
|
String getName();
|
|
|
|
String getMimeType();
|
|
}
|