Line data Source code
1 : /* 2 : * Copyright(c) 2019 Intel Corporation 3 : * SPDX - License - Identifier: BSD - 2 - Clause - Patent 4 : */ 5 : 6 : #include <stdlib.h> 7 : #include "EbInitialRateControlReorderQueue.h" 8 : 9 4096 : EbErrorType initial_rate_control_reorder_entry_ctor( 10 : InitialRateControlReorderEntry *entry_ptr, 11 : uint32_t picture_number) 12 : { 13 4096 : entry_ptr->picture_number = picture_number; 14 4096 : entry_ptr->parent_pcs_wrapper_ptr = (EbObjectWrapper *)EB_NULL; 15 : 16 4096 : return EB_ErrorNone; 17 : } 18 : 19 4096 : static void hl_rate_control_histogram_entry_dctor(EbPtr p) 20 : { 21 4096 : HlRateControlHistogramEntry* obj = (HlRateControlHistogramEntry*)p; 22 4096 : EB_FREE_ARRAY(obj->me_distortion_histogram); 23 4096 : EB_FREE_ARRAY(obj->ois_distortion_histogram); 24 4096 : } 25 : 26 4096 : EbErrorType hl_rate_control_histogram_entry_ctor( 27 : HlRateControlHistogramEntry *entry_ptr, 28 : uint32_t picture_number) 29 : { 30 4096 : entry_ptr->dctor = hl_rate_control_histogram_entry_dctor; 31 4096 : entry_ptr->picture_number = picture_number; 32 : 33 : // ME and OIS Distortion Histograms 34 4096 : EB_MALLOC_ARRAY(entry_ptr->me_distortion_histogram, NUMBER_OF_SAD_INTERVALS); 35 : 36 4096 : EB_MALLOC_ARRAY(entry_ptr->ois_distortion_histogram, NUMBER_OF_INTRA_SAD_INTERVALS); 37 : 38 4096 : return EB_ErrorNone; 39 : }