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 "EbPictureManagerReorderQueue.h" 8 : 9 4096 : EbErrorType picture_manager_reorder_entry_ctor( 10 : PictureManagerReorderEntry *entry_dbl_ptr, 11 : uint32_t picture_number) 12 : { 13 4096 : entry_dbl_ptr->picture_number = picture_number; 14 4096 : entry_dbl_ptr->parent_pcs_wrapper_ptr = (EbObjectWrapper *)EB_NULL; 15 : 16 4096 : return EB_ErrorNone; 17 : }