1474eb7536515fb785e925cc9375d22817c416851hclam@chromium.org/*
2474eb7536515fb785e925cc9375d22817c416851hclam@chromium.org *  Copyright (c) 2011 The WebM project authors. All Rights Reserved.
3474eb7536515fb785e925cc9375d22817c416851hclam@chromium.org *
4474eb7536515fb785e925cc9375d22817c416851hclam@chromium.org *  Use of this source code is governed by a BSD-style license
5474eb7536515fb785e925cc9375d22817c416851hclam@chromium.org *  that can be found in the LICENSE file in the root of the source
6474eb7536515fb785e925cc9375d22817c416851hclam@chromium.org *  tree. An additional intellectual property rights grant can be found
7474eb7536515fb785e925cc9375d22817c416851hclam@chromium.org *  in the file PATENTS.  All contributing project authors may
8474eb7536515fb785e925cc9375d22817c416851hclam@chromium.org *  be found in the AUTHORS file in the root of the source tree.
9474eb7536515fb785e925cc9375d22817c416851hclam@chromium.org */
10474eb7536515fb785e925cc9375d22817c416851hclam@chromium.org
11474eb7536515fb785e925cc9375d22817c416851hclam@chromium.org#include "vpx_config.h"
126fefe538d859300e7febe78271828198c10f1b52fgalligan@chromium.org#include "vp8_rtcd.h"
13474eb7536515fb785e925cc9375d22817c416851hclam@chromium.org
145c1d3b27608a3f3f6028c069b9bf066a4de474b6hclam@chromium.org#if HAVE_MEDIA
15474eb7536515fb785e925cc9375d22817c416851hclam@chromium.org
16167514562bbce1eb0566271d6cb41d90d2b5ffa0hclam@chromium.orgvoid vp8_short_fdct8x4_armv6(short *input, short *output, int pitch)
17474eb7536515fb785e925cc9375d22817c416851hclam@chromium.org{
18167514562bbce1eb0566271d6cb41d90d2b5ffa0hclam@chromium.org    vp8_short_fdct4x4_armv6(input,   output,    pitch);
19167514562bbce1eb0566271d6cb41d90d2b5ffa0hclam@chromium.org    vp8_short_fdct4x4_armv6(input + 4, output + 16, pitch);
20474eb7536515fb785e925cc9375d22817c416851hclam@chromium.org}
21474eb7536515fb785e925cc9375d22817c416851hclam@chromium.org
225c1d3b27608a3f3f6028c069b9bf066a4de474b6hclam@chromium.org#endif /* HAVE_MEDIA */
23