Finish new LaunchSpec

This commit is contained in:
Florian Märkl 2020-12-22 14:28:36 +01:00
commit e2d1c11064
No known key found for this signature in database
GPG key ID: 125BC8A5A6A1E857
3 changed files with 26 additions and 9 deletions

View file

@ -89,6 +89,16 @@ typedef enum
CHIAKI_CODEC_H265_HDR
} ChiakiCodec;
static inline bool chiaki_codec_is_h265(ChiakiCodec codec)
{
return codec == CHIAKI_CODEC_H265 || codec == CHIAKI_CODEC_H265_HDR;
}
static inline bool chiaki_codec_is_hdr(ChiakiCodec codec)
{
return codec == CHIAKI_CODEC_H265_HDR;
}
#ifdef __cplusplus
}
#endif