1233d2500723e5594f3e7c70896ffeeef32b9c950ywan/*
2233d2500723e5594f3e7c70896ffeeef32b9c950ywan *  Copyright (c) 2011 The WebM project authors. All Rights Reserved.
3233d2500723e5594f3e7c70896ffeeef32b9c950ywan *
4233d2500723e5594f3e7c70896ffeeef32b9c950ywan *  Use of this source code is governed by a BSD-style license
5233d2500723e5594f3e7c70896ffeeef32b9c950ywan *  that can be found in the LICENSE file in the root of the source
6233d2500723e5594f3e7c70896ffeeef32b9c950ywan *  tree. An additional intellectual property rights grant can be found
7233d2500723e5594f3e7c70896ffeeef32b9c950ywan *  in the file PATENTS.  All contributing project authors may
8233d2500723e5594f3e7c70896ffeeef32b9c950ywan *  be found in the AUTHORS file in the root of the source tree.
9233d2500723e5594f3e7c70896ffeeef32b9c950ywan */
10233d2500723e5594f3e7c70896ffeeef32b9c950ywan
11233d2500723e5594f3e7c70896ffeeef32b9c950ywan#include "vpx_config.h"
12233d2500723e5594f3e7c70896ffeeef32b9c950ywan#include "vp8_rtcd.h"
13233d2500723e5594f3e7c70896ffeeef32b9c950ywan
14233d2500723e5594f3e7c70896ffeeef32b9c950ywan#if HAVE_MEDIA
15233d2500723e5594f3e7c70896ffeeef32b9c950ywan
16233d2500723e5594f3e7c70896ffeeef32b9c950ywanvoid vp8_short_fdct8x4_armv6(short *input, short *output, int pitch)
17233d2500723e5594f3e7c70896ffeeef32b9c950ywan{
18233d2500723e5594f3e7c70896ffeeef32b9c950ywan    vp8_short_fdct4x4_armv6(input,   output,    pitch);
19233d2500723e5594f3e7c70896ffeeef32b9c950ywan    vp8_short_fdct4x4_armv6(input + 4, output + 16, pitch);
20233d2500723e5594f3e7c70896ffeeef32b9c950ywan}
21233d2500723e5594f3e7c70896ffeeef32b9c950ywan
22233d2500723e5594f3e7c70896ffeeef32b9c950ywan#endif /* HAVE_MEDIA */
23