1f71323e297a928af368937089d3ed71239786f86Andreas Huber/*
279f15823c34ae1e423108295e416213200bb280fAndreas Huber *  Copyright (c) 2011 The WebM project authors. All Rights Reserved.
3f71323e297a928af368937089d3ed71239786f86Andreas 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.
9f71323e297a928af368937089d3ed71239786f86Andreas Huber */
10f71323e297a928af368937089d3ed71239786f86Andreas Huber
1179f15823c34ae1e423108295e416213200bb280fAndreas Huber#include "vpx_config.h"
12ba164dffc5a6795bce97fae02b51ccf3330e15e4hkuang#include "vp8_rtcd.h"
13f71323e297a928af368937089d3ed71239786f86Andreas Huber
141b362b15af34006e6a11974088a46d42b903418eJohann#if HAVE_MEDIA
15f71323e297a928af368937089d3ed71239786f86Andreas Huber
161b362b15af34006e6a11974088a46d42b903418eJohannvoid vp8_short_fdct8x4_armv6(short *input, short *output, int pitch)
1779f15823c34ae1e423108295e416213200bb280fAndreas Huber{
181b362b15af34006e6a11974088a46d42b903418eJohann    vp8_short_fdct4x4_armv6(input,   output,    pitch);
191b362b15af34006e6a11974088a46d42b903418eJohann    vp8_short_fdct4x4_armv6(input + 4, output + 16, pitch);
2079f15823c34ae1e423108295e416213200bb280fAndreas Huber}
2179f15823c34ae1e423108295e416213200bb280fAndreas Huber
221b362b15af34006e6a11974088a46d42b903418eJohann#endif /* HAVE_MEDIA */
23