2
0
mirror of https://github.com/Genymobile/scrcpy synced 2025-09-02 23:35:19 +00:00

Accept .m4a and .mka

These are just aliases for mp4 and mkv when there is no video stream.

PR #3978 <https://github.com/Genymobile/scrcpy/pull/3978>
This commit is contained in:
Romain Vimont
2023-05-07 12:23:51 +02:00
parent 98f4f4e68a
commit d6bcde565f
3 changed files with 28 additions and 3 deletions

View File

@@ -21,8 +21,16 @@ enum sc_record_format {
SC_RECORD_FORMAT_AUTO,
SC_RECORD_FORMAT_MP4,
SC_RECORD_FORMAT_MKV,
SC_RECORD_FORMAT_M4A,
SC_RECORD_FORMAT_MKA,
};
static inline bool
sc_record_format_is_audio_only(enum sc_record_format fmt) {
return fmt == SC_RECORD_FORMAT_M4A
|| fmt == SC_RECORD_FORMAT_MKA;
}
enum sc_codec {
SC_CODEC_H264,
SC_CODEC_H265,