about summary refs log tree commit diff
path: root/converter/ppm/ppmtompeg/headers/specifics.h
blob: 4f5c707486bd6fa134332e3293c8eb630576c587 (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


/*===========*
 * TYPES     *
 *===========*/

typedef struct bs_def {
  int num;
  boolean relative;
  char qscale;
  BlockMV *mv;  /* defined in mtypes.h */
  struct bs_def *next;
} Block_Specifics;

typedef struct detail_def {
  int num;
  char qscale;
  struct detail_def *next;
}  Slice_Specifics;

typedef struct fsl_def {
  int framenum; 
  int frametype;
  char qscale;
  Slice_Specifics *slc;
  Block_Specifics *bs;
  struct fsl_def *next;
} FrameSpecList;


void	Specifics_Init (void);
int     SpecLookup (int fn, int typ, int num,
			    BlockMV **info, int start_qs);
int SpecTypeLookup (int fn);