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