mirror of
https://github.com/nyanmisaka/mpp.git
synced 2025-10-22 00:29:56 +08:00
[rkv_enc_cmd]: Fix check info err when mpp_enc_cfg_set
Err message: mpp[16915]: mpp_cfg: cfg h264:poc_type expect RK_U32 input NOT RK_U32 mpp[16915]: mpp_cfg: cfg h264:log2_max_poc_lsb expect RK_U32 input NOT RK_U32 mpp[16915]: mpp_cfg: cfg h264:log2_max_frm_num expect RK_U32 input NOT RK_U32 Signed-off-by: Yandong Lin <yandong.lin@rock-chips.com> Change-Id: Ide77867beed2ee4e94df1179882713e600d3448b
This commit is contained in:
@@ -598,17 +598,15 @@ typedef struct MppEncH264Cfg_t {
|
||||
|
||||
/*
|
||||
* H.264 codec syntax config
|
||||
* svc - deprecated, reserved for compile compatibility
|
||||
*
|
||||
* do NOT setup the three option below unless you are familiar with encoder detail
|
||||
* poc_type - picture order count type 0 ~ 2
|
||||
* log2_max_poc_lsb - used in sps with poc_type 0,
|
||||
* log2_max_frame_num - used in sps
|
||||
*/
|
||||
RK_U8 svc;
|
||||
RK_U8 poc_type;
|
||||
RK_U8 log2_max_poc_lsb;
|
||||
RK_U8 log2_max_frame_num;
|
||||
RK_U32 poc_type;
|
||||
RK_U32 log2_max_poc_lsb;
|
||||
RK_U32 log2_max_frame_num;
|
||||
RK_U32 gaps_not_allowed;
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user