blob: 09b0c065e4874a236ac7a14f5a0bbb047601fe67 [file] [log] [blame]
/*
* Copyright (c) 2019, Alliance for Open Media. All rights reserved
*
* 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.
*/
#ifndef AOM_AV1_CNN_WRAPPER_H_
#define AOM_AV1_CNN_WRAPPER_H_
#include "av1/common/onyxc_int.h"
#include "av1/common/resize.h"
#ifdef __cplusplus
extern "C" {
#endif
// Minimum base_qindex needed to run cnn.
#define MIN_CNN_Q_INDEX 100
static INLINE int av1_use_cnn(const AV1_COMMON *cm) {
return ((cm->base_qindex > MIN_CNN_Q_INDEX) && !av1_superres_scaled(cm));
}
void av1_encode_restore_cnn(AV1_COMMON *cm);
void av1_decode_restore_cnn(AV1_COMMON *cm);
#ifdef __cplusplus
}
#endif
#endif // AOM_AV1_CNN_WRAPPER_H_