blob: 0296ce0ecb6a013c78e63e5671a57a2c13ad2a85 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/*
* jfdctfst-8.c
*
* Copyright (C) 2025, D. R. Commander.
* For conditions of distribution and use, see the accompanying README.ijg
* file.
*
* This file is a wrapper for compiling jfdctfst.c to support 8 bits of
* data precision. jfdctfst.c should not be compiled directly.
*/
#define BITS_IN_JSAMPLE 8
#include "../jfdctfst.c"
|