hc
2023-12-09 b22da3d8526a935aa31e086e63f60ff3246cb61c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/*
 * Copyright 2020 Rockchip Electronics Co. LTD
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
 
#ifndef __MPP_DEC_CFG_H__
#define __MPP_DEC_CFG_H__
 
#include "mpp_frame.h"
#include "rk_vdec_cmd.h"
 
typedef enum MppDecCfgChange_e {
    MPP_DEC_CFG_CHANGE_TYPE             = (1 << 0),
    MPP_DEC_CFG_CHANGE_CODING           = (1 << 1),
    MPP_DEC_CFG_CHANGE_HW_TYPE          = (1 << 2),
    MPP_DEC_CFG_CHANGE_BATCH_MODE       = (1 << 3),
 
    MPP_DEC_CFG_CHANGE_OUTPUT_FORMAT    = (1 << 8),
    MPP_DEC_CFG_CHANGE_FAST_OUT         = (1 << 9),
    MPP_DEC_CFG_CHANGE_FAST_PARSE       = (1 << 10),
    MPP_DEC_CFG_CHANGE_SPLIT_PARSE      = (1 << 11),
    MPP_DEC_CFG_CHANGE_INTERNAL_PTS     = (1 << 12),
    MPP_DEC_CFG_CHANGE_SORT_PTS         = (1 << 13),
    MPP_DEC_CFG_CHANGE_DISABLE_ERROR    = (1 << 14),
    MPP_DEC_CFG_CHANGE_ENABLE_VPROC     = (1 << 15),
    MPP_DEC_CFG_CHANGE_ENABLE_FAST_PLAY = (1 << 16),
 
    MPP_DEC_CFG_CHANGE_ALL              = (0xFFFFFFFF),
} MppDecCfgChange;
 
typedef struct MppDecBaseCfg_t {
    RK_U64              change;
 
    MppCtxType          type;
    MppCodingType       coding;
    RK_S32              hw_type;
    RK_U32              batch_mode;
 
    MppFrameFormat      out_fmt;
    RK_U32              fast_out;
    RK_U32              fast_parse;
    RK_U32              split_parse;
    RK_U32              internal_pts;
    RK_U32              sort_pts;
    RK_U32              disable_error;
    RK_U32              enable_vproc;
    RK_U32              enable_fast_play;
} MppDecBaseCfg;
 
typedef enum MppDecCbCfgChange_e {
    MPP_DEC_CB_CFG_CHANGE_PKT_RDY       = (1 << 0),
    MPP_DEC_CB_CFG_CHANGE_FRM_RDY       = (1 << 1),
 
    MPP_DEC_CB_CFG_CHANGE_ALL           = (0xFFFFFFFF),
} MppDecCbCfgChange;
 
typedef struct MppDecCbCfg_t {
    RK_U64              change;
 
    /* notify packet process done and can accept new packet */
    MppExtCbFunc        pkt_rdy_cb;
    MppExtCbCtx         pkt_rdy_ctx;
    RK_S32              pkt_rdy_cmd;
 
    /* notify frame ready for output */
    MppExtCbFunc        frm_rdy_cb;
    MppExtCbCtx         frm_rdy_ctx;
    RK_S32              frm_rdy_cmd;
} MppDecCbCfg;
 
typedef struct MppDecStatusCfg_t {
    RK_U32              hal_support_fast_mode;
    RK_U32              hal_task_count;
    RK_U32              vproc_task_count;
} MppDecStatusCfg;
 
typedef struct MppDecCfgSet_t {
    MppDecBaseCfg       base;
    MppDecStatusCfg     status;
    MppDecCbCfg         cb;
} MppDecCfgSet;
 
/*
 * MppDecCfgApi is the function set for configure MppDecCfgSet by name
 */
typedef struct MppDecCfgApi_t {
    const char          *name;
    RK_S32              type_set;
    RK_S32              type_get;
    void                *api_set;
    void                *api_get;
} MppDecCfgApi;
 
#endif /* __MPP_DEC_CFG_H__ */