2016-02-09 23:24:33 +03:00
|
|
|
/*
|
2016-11-29 02:26:06 +03:00
|
|
|
* Copyright (c) 2016, Alliance for Open Media. All rights reserved
|
2016-02-09 23:24:33 +03:00
|
|
|
*
|
2016-11-29 02:26:06 +03:00
|
|
|
* This source code is subject to the terms of the BSD 2 Clause License and
|
|
|
|
* the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
|
|
|
|
* was not distributed with this source code in the LICENSE file, you can
|
|
|
|
* obtain it at www.aomedia.org/license/software. If the Alliance for Open
|
|
|
|
* Media Patent License 1.0 was not distributed with this source code in the
|
|
|
|
* PATENTS file, you can obtain it at www.aomedia.org/license/patent.
|
2016-02-09 23:24:33 +03:00
|
|
|
*/
|
2016-08-31 00:01:10 +03:00
|
|
|
#ifndef AV1_ENCODER_PICKRST_H_
|
|
|
|
#define AV1_ENCODER_PICKRST_H_
|
2016-02-09 23:24:33 +03:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2016-08-23 02:08:15 +03:00
|
|
|
#include "av1/encoder/encoder.h"
|
2016-02-09 23:24:33 +03:00
|
|
|
|
|
|
|
struct yv12_buffer_config;
|
2016-08-31 00:01:10 +03:00
|
|
|
struct AV1_COMP;
|
2016-02-09 23:24:33 +03:00
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
void av1_pick_filter_restoration(const YV12_BUFFER_CONFIG *sd, AV1_COMP *cpi,
|
|
|
|
LPF_PICK_METHOD method);
|
2016-02-09 23:24:33 +03:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} // extern "C"
|
|
|
|
#endif
|
|
|
|
|
2016-08-31 00:01:10 +03:00
|
|
|
#endif // AV1_ENCODER_PICKRST_H_
|