Follow-on fix for bug 457825. Use sheet principal for agent and user sheets. r=dbaron...
[wine-gecko.git] / media / libtheora / lib / dec / idct.h
blobb52e4b449e50d754c563260cc12653525ecae220
1 /********************************************************************
2 * *
3 * THIS FILE IS PART OF THE OggTheora SOFTWARE CODEC SOURCE CODE. *
4 * USE, DISTRIBUTION AND REPRODUCTION OF THIS LIBRARY SOURCE IS *
5 * GOVERNED BY A BSD-STYLE SOURCE LICENSE INCLUDED WITH THIS SOURCE *
6 * IN 'COPYING'. PLEASE READ THESE TERMS BEFORE DISTRIBUTING. *
7 * *
8 * THE Theora SOURCE CODE IS COPYRIGHT (C) 2002-2007 *
9 * by the Xiph.Org Foundation http://www.xiph.org/ *
10 * *
11 ********************************************************************
13 function:
14 last mod: $Id: idct.h 13884 2007-09-22 08:38:10Z giles $
16 ********************************************************************/
18 /*Inverse DCT transforms.*/
19 #include <ogg/ogg.h>
20 #if !defined(_idct_H)
21 # define _idct_H (1)
23 void oc_idct8x8_c(ogg_int16_t _y[64],const ogg_int16_t _x[64]);
24 void oc_idct8x8_10_c(ogg_int16_t _y[64],const ogg_int16_t _x[64]);
26 #endif