about summary refs log tree commit diff
path: root/converter/other/fiasco/lib/dither.h
blob: 71f9d3c3253de9a01f34db83e21b97df02eeed57 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
 *  dither.h
 *
 *  Written by:		Ullrich Hafner
 *		
 *  This file is part of FIASCO («F»ractal «I»mage «A»nd «S»equence «CO»dec)
 *  Copyright (C) 1994-2000 Ullrich Hafner <hafner@bigfoot.de>
 */

/*
 *  $Date: 2000/06/14 20:49:37 $
 *  $Author: hafner $
 *  $Revision: 5.1 $
 *  $State: Exp $
 */

#ifndef _DITHER_H
#define _DITHER_H

typedef struct renderer_private
{
   int 	       	*Cr_r_tab, *Cr_g_tab, *Cb_g_tab, *Cb_b_tab;
   unsigned int *r_table, *g_table, *b_table, *y_table;
   bool_t	double_resolution;
} renderer_private_t;

#endif /* _DITHER_H */