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 : 8 : #include "EbDefinitions.h" 9 : #include "EbMotionEstimationResults.h" 10 : 11 600 : EbErrorType motion_estimation_results_ctor( 12 : MotionEstimationResults *context_ptr, 13 : EbPtr object_init_data_ptr) 14 : { 15 : (void) context_ptr; 16 : (void)(object_init_data_ptr); 17 600 : return EB_ErrorNone; 18 : } 19 : 20 600 : EbErrorType motion_estimation_results_creator( 21 : EbPtr *object_dbl_ptr, 22 : EbPtr object_init_data_ptr) 23 : { 24 : MotionEstimationResults* obj; 25 : 26 600 : *object_dbl_ptr = NULL; 27 600 : EB_NEW(obj, motion_estimation_results_ctor, object_init_data_ptr); 28 600 : *object_dbl_ptr = obj; 29 : 30 600 : return EB_ErrorNone; 31 : }