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_PASS2_STRATEGY_H_
13 #define AOM_AV1_ENCODER_PASS2_STRATEGY_H_
14 
15 #ifdef __cplusplus
16 extern "C" {
17 #endif
18 
19 struct AV1_COMP;
20 struct EncodeFrameParams;
21 
22 void av1_init_second_pass(struct AV1_COMP *cpi);
23 
24 void av1_get_second_pass_params(struct AV1_COMP *cpi,
25                                 struct EncodeFrameParams *const frame_params,
26                                 unsigned int frame_flags);
27 
28 void av1_twopass_postencode_update(struct AV1_COMP *cpi);
29 
30 #ifdef __cplusplus
31 }  // extern "C"
32 #endif
33 
34 #endif  // AOM_AV1_ENCODER_PASS2_STRATEGY_H_
35