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