blob: eed12b6bf307e2a37ba420427ca552dd58a96ac7 (
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
28
29
30
31
32
33
34
35
36
37
38
|
/*
* dfiasco.h
*
* Written by: Ullrich Hafner
*
* This file is part of FIASCO (Fractal Image And Sequence COdec)
* Copyright (C) 1994-2000 Ullrich Hafner
*/
/*
* $Date: 2000/07/15 18:00:53 $
* $Author: hafner $
* $Revision: 5.2 $
* $State: Exp $
*/
#ifndef _DFIASCO_H
#define _DFIASCO_H
#include "types.h"
#include "bit-io.h"
#include "decoder.h"
#include "image.h"
#include "wfa.h"
typedef struct dfiasco
{
char id [8];
wfa_t *wfa;
video_t *video;
bitfile_t *input;
int enlarge_factor;
int smoothing;
format_e image_format;
} dfiasco_t;
#endif /* not _DFIASCO_H */
|