blob: 36be9ba29304777843c820cdb1df2b017dd7d5fc [file] [log] [blame]
David Turnere3e520d2019-01-18 14:38:08 +00001/*
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
16extern "C" {
17#endif
18
19void av1_tpl_setup_stats(AV1_COMP *cpi,
Yue Chen4e585cc2019-06-03 14:47:16 -070020 const EncodeFrameInput *const frame_input,
21 int is_for_kf);
David Turnere3e520d2019-01-18 14:38:08 +000022
Debargha Mukherjee347c64d2019-05-08 13:53:46 -070023void av1_tpl_setup_forward_stats(AV1_COMP *cpi);
24
David Turnere3e520d2019-01-18 14:38:08 +000025#ifdef __cplusplus
26} // extern "C"
27#endif
28
29#endif // AOM_AV1_ENCODER_TPL_MODEL_H_