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 "EbPacketizationReorderQueue.h" 8 : 9 4096 : EbErrorType packetization_reorder_entry_ctor( 10 : PacketizationReorderEntry *entry_dbl_ptr, 11 : uint32_t picture_number) 12 : { 13 4096 : entry_dbl_ptr->picture_number = picture_number; 14 : 15 4096 : return EB_ErrorNone; 16 : }