mirror of
https://repo.dec05eba.com/gpu-screen-recorder
synced 2026-03-31 09:07:13 +09:00
Move codec query from encoder to separate file
This commit is contained in:
18
include/codec_query/codec_query.h
Normal file
18
include/codec_query/codec_query.h
Normal file
@@ -0,0 +1,18 @@
|
||||
#ifndef GSR_CODEC_QUERY_H
|
||||
#define GSR_CODEC_QUERY_H
|
||||
|
||||
#include <stdbool.h>
|
||||
|
||||
typedef struct {
|
||||
bool h264;
|
||||
bool hevc;
|
||||
bool hevc_hdr;
|
||||
bool hevc_10bit;
|
||||
bool av1;
|
||||
bool av1_hdr;
|
||||
bool av1_10bit;
|
||||
bool vp8;
|
||||
bool vp9;
|
||||
} gsr_supported_video_codecs;
|
||||
|
||||
#endif /* GSR_CODEC_QUERY_H */
|
||||
Reference in New Issue
Block a user