190d3ed91ae9228e1c8bab561b6138d4cb8c1e4fdAndreas Huber/*
2f71323e297a928af368937089d3ed71239786f86Andreas Huber *  Copyright (c) 2010 The WebM project authors. All Rights Reserved.
390d3ed91ae9228e1c8bab561b6138d4cb8c1e4fdAndreas Huber *
4f71323e297a928af368937089d3ed71239786f86Andreas Huber *  Use of this source code is governed by a BSD-style license
5f71323e297a928af368937089d3ed71239786f86Andreas Huber *  that can be found in the LICENSE file in the root of the source
6f71323e297a928af368937089d3ed71239786f86Andreas Huber *  tree. An additional intellectual property rights grant can be found
7f71323e297a928af368937089d3ed71239786f86Andreas Huber *  in the file PATENTS.  All contributing project authors may
8f71323e297a928af368937089d3ed71239786f86Andreas Huber *  be found in the AUTHORS file in the root of the source tree.
990d3ed91ae9228e1c8bab561b6138d4cb8c1e4fdAndreas Huber */
1090d3ed91ae9228e1c8bab561b6138d4cb8c1e4fdAndreas Huber
11ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang#ifndef VP9_ENCODER_VP9_PICKLPF_H_
12ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang#define VP9_ENCODER_VP9_PICKLPF_H_
1390d3ed91ae9228e1c8bab561b6138d4cb8c1e4fdAndreas Huber
142ec72e65689c948e92b826ae1e867bf369e72f13Vignesh Venkatasubramanian#ifdef __cplusplus
152ec72e65689c948e92b826ae1e867bf369e72f13Vignesh Venkatasubramanianextern "C" {
162ec72e65689c948e92b826ae1e867bf369e72f13Vignesh Venkatasubramanian#endif
172ec72e65689c948e92b826ae1e867bf369e72f13Vignesh Venkatasubramanian
18ba6c59e9d7d7013b3906b6f4230b663422681848Vignesh Venkatasubramanian#include "vp9/encoder/vp9_encoder.h"
194fb68e5dd4e93c7599dc905d861de11ac39c5585hkuang
20ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuangstruct yv12_buffer_config;
21ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuangstruct VP9_COMP;
2290d3ed91ae9228e1c8bab561b6138d4cb8c1e4fdAndreas Huber
232ec72e65689c948e92b826ae1e867bf369e72f13Vignesh Venkatasubramanianvoid vp9_pick_filter_level(const struct yv12_buffer_config *sd,
244fb68e5dd4e93c7599dc905d861de11ac39c5585hkuang                           struct VP9_COMP *cpi, LPF_PICK_METHOD method);
252ec72e65689c948e92b826ae1e867bf369e72f13Vignesh Venkatasubramanian#ifdef __cplusplus
262ec72e65689c948e92b826ae1e867bf369e72f13Vignesh Venkatasubramanian}  // extern "C"
272ec72e65689c948e92b826ae1e867bf369e72f13Vignesh Venkatasubramanian#endif
2890d3ed91ae9228e1c8bab561b6138d4cb8c1e4fdAndreas Huber
29ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang#endif  // VP9_ENCODER_VP9_PICKLPF_H_
30