xref: /rockchip-linux_mpp/mpp/codec/dec/h265/h265d_defs.h (revision 437bfbeb9567cca9cd9080e3f6954aa9d6a94f18)
1*437bfbebSnyanmisaka /*
2*437bfbebSnyanmisaka  *
3*437bfbebSnyanmisaka  * Copyright 2015 Rockchip Electronics Co. LTD
4*437bfbebSnyanmisaka  *
5*437bfbebSnyanmisaka  * Licensed under the Apache License, Version 2.0 (the "License");
6*437bfbebSnyanmisaka  * you may not use this file except in compliance with the License.
7*437bfbebSnyanmisaka  * You may obtain a copy of the License at
8*437bfbebSnyanmisaka  *
9*437bfbebSnyanmisaka  *      http://www.apache.org/licenses/LICENSE-2.0
10*437bfbebSnyanmisaka  *
11*437bfbebSnyanmisaka  * Unless required by applicable law or agreed to in writing, software
12*437bfbebSnyanmisaka  * distributed under the License is distributed on an "AS IS" BASIS,
13*437bfbebSnyanmisaka  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14*437bfbebSnyanmisaka  * See the License for the specific language governing permissions and
15*437bfbebSnyanmisaka  * limitations under the License.
16*437bfbebSnyanmisaka  */
17*437bfbebSnyanmisaka 
18*437bfbebSnyanmisaka /*
19*437bfbebSnyanmisaka  * @file       h265d_defs.h
20*437bfbebSnyanmisaka  * @brief
21*437bfbebSnyanmisaka  * @author      csy(csy@rock-chips.com)
22*437bfbebSnyanmisaka 
23*437bfbebSnyanmisaka  * @version     1.0.0
24*437bfbebSnyanmisaka  * @history
25*437bfbebSnyanmisaka  *   2015.7.15 : Create
26*437bfbebSnyanmisaka  */
27*437bfbebSnyanmisaka 
28*437bfbebSnyanmisaka 
29*437bfbebSnyanmisaka #ifndef __H265D_DEF_H__
30*437bfbebSnyanmisaka #define __H265D_DEF_H__
31*437bfbebSnyanmisaka 
32*437bfbebSnyanmisaka #ifdef VPS_EXTENSION
33*437bfbebSnyanmisaka #define MAX_VPS_NUM_SCALABILITY_TYPES       16
34*437bfbebSnyanmisaka #define MAX_VPS_LAYER_ID_PLUS1              MAX_LAYERS
35*437bfbebSnyanmisaka #define MAX_VPS_LAYER_SETS_PLUS1            1024
36*437bfbebSnyanmisaka #define VPS_EXTN_MASK_AND_DIM_INFO          1
37*437bfbebSnyanmisaka #define VPS_MOVE_DIR_DEPENDENCY_FLAG        1
38*437bfbebSnyanmisaka #define VPS_EXTN_DIRECT_REF_LAYERS          1
39*437bfbebSnyanmisaka #define VPS_EXTN_PROFILE_INFO               1
40*437bfbebSnyanmisaka #define VPS_PROFILE_OUTPUT_LAYERS           1
41*437bfbebSnyanmisaka #define VPS_EXTN_OP_LAYER_SETS              1
42*437bfbebSnyanmisaka #endif
43*437bfbebSnyanmisaka #define DERIVE_LAYER_ID_LIST_VARIABLES      1
44*437bfbebSnyanmisaka 
45*437bfbebSnyanmisaka #endif /* H265D_DEF_H */
46