36 lines
933 B
C
36 lines
933 B
C
|
/*
|
||
|
* Copyright (c) 2016 The WebM project authors. All Rights Reserved.
|
||
|
*
|
||
|
* Use of this source code is governed by a BSD-style license that can be
|
||
|
* found in the LICENSE file in the root of the source tree. An additional
|
||
|
* intellectual property rights grant can be found in the file PATENTS.
|
||
|
* All contributing project authors may be found in the AUTHORS file in
|
||
|
* the root of the source tree.
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
* \file vp9_alt_ref_aq_private.h
|
||
|
*
|
||
|
* This file describes class used for setting up adaptive segmentation
|
||
|
* for altref frames. It is private file and most likely you need
|
||
|
* alt_ref_aq.h instead.
|
||
|
*/
|
||
|
|
||
|
#ifndef VP9_ENCODER_VP9_ALT_REF_AQ_PRIVATE_H_
|
||
|
#define VP9_ENCODER_VP9_ALT_REF_AQ_PRIVATE_H_
|
||
|
|
||
|
#include "vp9/encoder/vp9_alt_ref_aq.h"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
struct ALT_REF_AQ {};
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
} // extern "C"
|
||
|
#endif
|
||
|
|
||
|
#endif // VP9_ENCODER_VP9_ALT_REF_AQ_PRIVATE_H_
|