Add H265 Streaming to GUI

This commit is contained in:
Florian Märkl 2020-12-28 17:27:10 +01:00
commit e6d18155af
No known key found for this signature in database
GPG key ID: 125BC8A5A6A1E857
8 changed files with 57 additions and 4 deletions

View file

@ -85,9 +85,10 @@ CHIAKI_EXPORT ChiakiErrorCode chiaki_lib_init();
typedef enum
{
// values must not change
CHIAKI_CODEC_H264 = 0,
CHIAKI_CODEC_H265,
CHIAKI_CODEC_H265_HDR
CHIAKI_CODEC_H265 = 1,
CHIAKI_CODEC_H265_HDR = 2
} ChiakiCodec;
static inline bool chiaki_codec_is_h265(ChiakiCodec codec)