1 /* 2 * Copyright 2015 Rockchip Electronics Co. LTD 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 #ifndef __H265E_SYNTAX_H__ 18 #define __H265E_SYNTAX_H__ 19 20 typedef struct H265eSyntax_t { 21 RK_S32 idr_request; 22 // RK_S32 eos; 23 } H265eSyntax; 24 25 typedef struct H265eFeedback_t { 26 RK_U32 bs_size; 27 RK_U32 enc_pic_cnt; 28 RK_U32 pic_type; 29 RK_U32 avg_ctu_qp; 30 RK_U32 gop_idx; 31 RK_U32 poc; 32 RK_U32 src_idx; 33 RK_U32 status; 34 } H265eFeedback; 35 36 #endif 37