blob: dd0a4e06d2f5a19abc35add72ab02e0a1ff6659a [file] [log] [blame]
/*
* Copyright 2019 The libgav1 Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef LIBGAV1_SRC_DSP_CONSTANTS_H_
#define LIBGAV1_SRC_DSP_CONSTANTS_H_
// This file contains DSP related constants that have a direct relationship with
// a DSP component.
#include <cstdint>
#include "src/utils/constants.h"
namespace libgav1 {
enum {
kCflLumaBufferStride = 32,
}; // anonymous enum
extern const int8_t kFilterIntraTaps[kNumFilterIntraPredictors][8][8];
// Values in this enum can be derived as the sum of subsampling_x and
// subsampling_y (since subsampling_x == 0 && subsampling_y == 1 case is never
// allowed by the bitstream).
enum SubsamplingType : uint8_t {
kSubsamplingType444, // subsampling_x = 0, subsampling_y = 0.
kSubsamplingType422, // subsampling_x = 1, subsampling_y = 0.
kSubsamplingType420, // subsampling_x = 1, subsampling_y = 1.
kNumSubsamplingTypes
};
extern const uint16_t kSgrScaleParameter[16][2];
extern const uint8_t kCdefPrimaryTaps[2][2];
extern const int8_t kCdefDirectionsPadded[12][2][2];
} // namespace libgav1
#endif // LIBGAV1_SRC_DSP_CONSTANTS_H_