blob: b159ba33dd45dbb1cb95a8107cd2fcb76de3c357 [file] [log] [blame]
/*
* Copyright 2020 Google LLC
*
*/
/*
* Copyright (c) 2020, Alliance for Open Media. All rights reserved
*
* This source code is subject to the terms of the BSD 2 Clause License and
* the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
* was not distributed with this source code in the LICENSE file, you can
* obtain it at www.aomedia.org/license/software. If the Alliance for Open
* Media Patent License 1.0 was not distributed with this source code in the
* PATENTS file, you can obtain it at www.aomedia.org/license/patent.
*/
#include "idct_shader_common.h"
#define N 4
#define ScanSize 4
#define IdctOutputShiftH 0
#define IdctOutputShiftV 4
cbuffer cb_scans_4x4 : register(b0) { int4 cb_scans[ScanSize * 3]; };
groupshared int shared_mem[4 * 64];
IDCT_GEN(N, 1, 1, 1, N / 4, 0, TRANSFORM_SELECT4, TRANSFORM_SELECT4);