about summary refs log tree commit diff
path: root/converter/other/fiasco/lib/dither.h
blob: 767bca28374cf2f81b5f081b13b9caa3d93727eb (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 (Fractal Image And Sequence COdec)
 *  Copyright (C) 1994-2000 Ullrich Hafner
 */

/*
 *  $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 */