1 /*
2 * Copyright(c) 2019 Intel Corporation
3 *
4 * This source code is subject to the terms of the BSD 2 Clause License and
5 * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
6 * was not distributed with this source code in the LICENSE file, you can
7 * obtain it at https://www.aomedia.org/license/software-license. If the Alliance for Open
8 * Media Patent License 1.0 was not distributed with this source code in the
9 * PATENTS file, you can obtain it at https://www.aomedia.org/license/patent-license.
10 */
11 
12 #ifndef EbResourceCoordination_h
13 #define EbResourceCoordination_h
14 
15 #include "EbDefinitions.h"
16 #ifdef __cplusplus
17 extern "C" {
18 #endif
19 /***************************************
20      * Extern Function Declaration
21      ***************************************/
22 EbErrorType resource_coordination_context_ctor(EbThreadContext* thread_context_ptr,
23                                                EbEncHandle*     enc_handle_ptr);
24 
25 extern void* resource_coordination_kernel(void* input_ptr);
26 #ifdef __cplusplus
27 }
28 #endif
29 #endif // EbResourceCoordination_h
30