1 /****************************************************************************** 2 * 3 * Copyright (C) 2015 The Android Open Source Project 4 * 5 * Licensed under the Apache License, Version 2.0 (the "License"); 6 * you may not use this file except in compliance with the License. 7 * You may obtain a copy of the License at: 8 * 9 * http://www.apache.org/licenses/LICENSE-2.0 10 * 11 * Unless required by applicable law or agreed to in writing, software 12 * distributed under the License is distributed on an "AS IS" BASIS, 13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 * See the License for the specific language governing permissions and 15 * limitations under the License. 16 * 17 ***************************************************************************** 18 * Originally developed and contributed by Ittiam Systems Pvt. Ltd, Bangalore 19 */ 20 21 /** 22 ****************************************************************************** 23 * @file 24 * ih264e_debug.h 25 * 26 * @brief 27 * This file contains extern declarations of routines that could be helpful 28 * for debugging purposes. 29 * 30 * @author 31 * ittiam 32 * 33 * @remarks 34 * none 35 ****************************************************************************** 36 */ 37 38 #ifndef IH264E_DEBUG_H_ 39 #define IH264E_DEBUG_H_ 40 41 #if DEBUG_RC 42 43 #define DEBUG_DUMP_QP(pic_cnt, qp, num_cores) \ 44 ih264e_debug_dump_qp(pic_cnt, qp, num_cores); 45 46 #define DEBUG_DUMP_RC(ps_rc) ih264e_debug_print_rc(ps_rc); 47 48 #define DEBUG_DUMP_COST_SAD_PU(ps_proc) ih264e_debug_dump_cost_sad_pu(ps_proc); 49 50 #define DEBUG_DUMP_INP_TO_RC_POST_ENC(ps_frame_info, pic_cnt, num_cores) \ 51 ih264e_debug_dump_inp_to_post_enc(ps_frame_info, pic_cnt, num_cores); 52 53 #else 54 55 #define DEBUG_DUMP_QP(pic_cnt, qp, num_cores) (void); 56 57 #define DEBUG_DUMP_RC(ps_rc) (void); 58 59 #define DEBUG_DUMP_COST_SAD_PU(ps_proc) (void); 60 61 #define DEBUG_DUMP_INP_TO_RC_POST_ENC(ps_frame_info, pic_cnt, num_cores) (void); 62 63 #endif 64 65 #endif /* IH264E_DEBUG_H_ */ 66