mirror of
https://github.com/Genymobile/scrcpy.git
synced 2025-07-28 11:49:10 +00:00
Add support for AV1
Add option --codec=av1. PR #3713 <https://github.com/Genymobile/scrcpy/pull/3713>
This commit is contained in:
parent
4342c5637d
commit
d2dce51038
7 changed files with 25 additions and 6 deletions
|
@ -163,6 +163,8 @@ sc_server_get_codec_name(enum sc_codec codec) {
|
|||
return "h264";
|
||||
case SC_CODEC_H265:
|
||||
return "h265";
|
||||
case SC_CODEC_AV1:
|
||||
return "av1";
|
||||
default:
|
||||
return NULL;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue