• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef VULKAN_VIDEO_CODEC_H265STD_DECODE_H_
2 #define VULKAN_VIDEO_CODEC_H265STD_DECODE_H_ 1
3 
4 /*
5 ** Copyright 2015-2022 The Khronos Group Inc.
6 **
7 ** SPDX-License-Identifier: Apache-2.0
8 */
9 
10 /*
11 ** This header is generated from the Khronos Vulkan XML API Registry.
12 **
13 */
14 
15 
16 #ifdef __cplusplus
17 extern "C" {
18 #endif
19 
20 
21 
22 #define vulkan_video_codec_h265std_decode 1
23 #define STD_VIDEO_DECODE_H265_REF_PIC_SET_LIST_SIZE 8
24 typedef struct StdVideoDecodeH265PictureInfoFlags {
25     uint32_t    IrapPicFlag : 1;
26     uint32_t    IdrPicFlag  : 1;
27     uint32_t    IsReference : 1;
28     uint32_t    short_term_ref_pic_set_sps_flag : 1;
29 } StdVideoDecodeH265PictureInfoFlags;
30 
31 typedef struct StdVideoDecodeH265PictureInfo {
32     uint8_t                               vps_video_parameter_set_id;
33     uint8_t                               sps_seq_parameter_set_id;
34     uint8_t                               pps_pic_parameter_set_id;
35     uint8_t                               num_short_term_ref_pic_sets;
36     int32_t                               PicOrderCntVal;
37     uint16_t                              NumBitsForSTRefPicSetInSlice;
38     uint8_t                               NumDeltaPocsOfRefRpsIdx;
39     uint8_t                               RefPicSetStCurrBefore[STD_VIDEO_DECODE_H265_REF_PIC_SET_LIST_SIZE];
40     uint8_t                               RefPicSetStCurrAfter[STD_VIDEO_DECODE_H265_REF_PIC_SET_LIST_SIZE];
41     uint8_t                               RefPicSetLtCurr[STD_VIDEO_DECODE_H265_REF_PIC_SET_LIST_SIZE];
42     StdVideoDecodeH265PictureInfoFlags    flags;
43 } StdVideoDecodeH265PictureInfo;
44 
45 typedef struct StdVideoDecodeH265ReferenceInfoFlags {
46     uint32_t    is_long_term : 1;
47     uint32_t    is_non_existing : 1;
48 } StdVideoDecodeH265ReferenceInfoFlags;
49 
50 typedef struct StdVideoDecodeH265ReferenceInfo {
51     int32_t                                 PicOrderCntVal;
52     StdVideoDecodeH265ReferenceInfoFlags    flags;
53 } StdVideoDecodeH265ReferenceInfo;
54 
55 
56 #ifdef __cplusplus
57 }
58 #endif
59 
60 #endif
61