summaryrefslogtreecommitdiff
path: root/media/libtheora/lib/dct.h
diff options
context:
space:
mode:
authorJeremy Andrews <athenian200@outlook.com>2021-09-25 17:45:23 -0500
committerJeremy Andrews <athenian200@outlook.com>2021-09-25 17:45:23 -0500
commit91a3b618c0666f2894bfc9f30a2eab920b870653 (patch)
tree9a9cd5f1e6240545b3e5b6f10b215d15e28cff48 /media/libtheora/lib/dct.h
parentf6f94a2126f2f1ecffadfbe63ae4a9edec92b2f7 (diff)
downloadaura-central-91a3b618c0666f2894bfc9f30a2eab920b870653.tar.gz
Issue %3003 - Move libtheora to libs/
Diffstat (limited to 'media/libtheora/lib/dct.h')
-rw-r--r--media/libtheora/lib/dct.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/media/libtheora/lib/dct.h b/media/libtheora/lib/dct.h
deleted file mode 100644
index 24ba6f111..000000000
--- a/media/libtheora/lib/dct.h
+++ /dev/null
@@ -1,31 +0,0 @@
-/********************************************************************
- * *
- * THIS FILE IS PART OF THE OggTheora SOFTWARE CODEC SOURCE CODE. *
- * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
- * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
- * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
- * *
- * THE Theora SOURCE CODE IS COPYRIGHT (C) 2002-2009 *
- * by the Xiph.Org Foundation and contributors http://www.xiph.org/ *
- * *
- ********************************************************************
-
- function:
- last mod: $Id: dct.h 16503 2009-08-22 18:14:02Z giles $
-
- ********************************************************************/
-
-/*Definitions shared by the forward and inverse DCT transforms.*/
-#if !defined(_dct_H)
-# define _dct_H (1)
-
-/*cos(n*pi/16) (resp. sin(m*pi/16)) scaled by 65536.*/
-#define OC_C1S7 ((ogg_int32_t)64277)
-#define OC_C2S6 ((ogg_int32_t)60547)
-#define OC_C3S5 ((ogg_int32_t)54491)
-#define OC_C4S4 ((ogg_int32_t)46341)
-#define OC_C5S3 ((ogg_int32_t)36410)
-#define OC_C6S2 ((ogg_int32_t)25080)
-#define OC_C7S1 ((ogg_int32_t)12785)
-
-#endif