diff options
author | robot-piglet <[email protected]> | 2025-06-15 15:44:41 +0300 |
---|---|---|
committer | robot-piglet <[email protected]> | 2025-06-15 15:55:30 +0300 |
commit | ea626d7b15346c0da649291483f80f1ae6e1d7e7 (patch) | |
tree | 24ae3c2aa7f259f3ba95af8450b5bce9a4bdb10d /contrib/libs/libjpeg-turbo/src/wrapper/jfdctint-12.c | |
parent | 726087f32fb38c191ff0c3ef8c6646aa940d987e (diff) |
Intermediate changes
commit_hash:79edafb911368bba0a4d2f7f151a6c8a37c349f3
Diffstat (limited to 'contrib/libs/libjpeg-turbo/src/wrapper/jfdctint-12.c')
-rw-r--r-- | contrib/libs/libjpeg-turbo/src/wrapper/jfdctint-12.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/contrib/libs/libjpeg-turbo/src/wrapper/jfdctint-12.c b/contrib/libs/libjpeg-turbo/src/wrapper/jfdctint-12.c new file mode 100644 index 00000000000..42ec3ef7150 --- /dev/null +++ b/contrib/libs/libjpeg-turbo/src/wrapper/jfdctint-12.c @@ -0,0 +1,14 @@ +/* + * jfdctint-12.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 jfdctint.c to support 12 bits of + * data precision. jfdctint.c should not be compiled directly. + */ + +#define BITS_IN_JSAMPLE 12 + +#include "../jfdctint.c" |