aboutsummaryrefslogtreecommitdiff
path: root/include/codec_query/codec_query.h
blob: 7d5a29203754fbe4d99878ce794efe6bb74dca8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 */