David Turner | e3e520d | 2019-01-18 14:38:08 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2019, Alliance for Open Media. All rights reserved |
| 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 www.aomedia.org/license/software. 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 www.aomedia.org/license/patent. |
| 10 | */ |
| 11 | |
| 12 | #ifndef AOM_AV1_ENCODER_TPL_MODEL_H_ |
| 13 | #define AOM_AV1_ENCODER_TPL_MODEL_H_ |
| 14 | |
| 15 | #ifdef __cplusplus |
| 16 | extern "C" { |
| 17 | #endif |
| 18 | |
| 19 | void av1_tpl_setup_stats(AV1_COMP *cpi, |
Yue Chen | 4e585cc | 2019-06-03 14:47:16 -0700 | [diff] [blame] | 20 | const EncodeFrameInput *const frame_input, |
| 21 | int is_for_kf); |
David Turner | e3e520d | 2019-01-18 14:38:08 +0000 | [diff] [blame] | 22 | |
Debargha Mukherjee | 347c64d | 2019-05-08 13:53:46 -0700 | [diff] [blame] | 23 | void av1_tpl_setup_forward_stats(AV1_COMP *cpi); |
| 24 | |
David Turner | e3e520d | 2019-01-18 14:38:08 +0000 | [diff] [blame] | 25 | #ifdef __cplusplus |
| 26 | } // extern "C" |
| 27 | #endif |
| 28 | |
| 29 | #endif // AOM_AV1_ENCODER_TPL_MODEL_H_ |