mirror of
https://git.sr.ht/~thestr4ng3r/chiaki
synced 2025-08-20 13:33:13 -07:00
Preliminary PS5 Streaming
This commit is contained in:
parent
05812b7b7a
commit
aa9939e93c
11 changed files with 848 additions and 32 deletions
|
@ -61,7 +61,7 @@ CHIAKI_EXPORT void chiaki_aligned_free(void *ptr);
|
|||
typedef enum
|
||||
{
|
||||
// values must not change
|
||||
CHIAKI_TARGET_PS4_UNKNOWN = 0,
|
||||
CHIAKI_TARGET_PS4_UNKNOWN = 0,
|
||||
CHIAKI_TARGET_PS4_8 = 800,
|
||||
CHIAKI_TARGET_PS4_9 = 900,
|
||||
CHIAKI_TARGET_PS4_10 = 1000,
|
||||
|
@ -82,6 +82,13 @@ static inline bool chiaki_target_is_ps5(ChiakiTarget target) { return target >=
|
|||
*/
|
||||
CHIAKI_EXPORT ChiakiErrorCode chiaki_lib_init();
|
||||
|
||||
typedef enum
|
||||
{
|
||||
CHIAKI_CODEC_H264 = 0,
|
||||
CHIAKI_CODEC_H265,
|
||||
CHIAKI_CODEC_H265_HDR
|
||||
} ChiakiCodec;
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
|
|
@ -48,6 +48,7 @@ typedef struct chiaki_connect_video_profile_t
|
|||
unsigned int height;
|
||||
unsigned int max_fps;
|
||||
unsigned int bitrate;
|
||||
ChiakiCodec codec;
|
||||
} ChiakiConnectVideoProfile;
|
||||
|
||||
typedef enum {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue