comparison libmpcodecs/pullup.h @ 11626:168e540bad66

allow for different combing metrics to be selected (not useful yet)
author rfelker
date Thu, 11 Dec 2003 05:06:17 +0000
parents ec3dac7d17a0
children 6fc547235443
comparison
equal deleted inserted replaced
11625:a18a54997671 11626:168e540bad66
24 struct pullup_buffer *buffer; 24 struct pullup_buffer *buffer;
25 unsigned int flags; 25 unsigned int flags;
26 int breaks; 26 int breaks;
27 int affinity; 27 int affinity;
28 int *diffs; 28 int *diffs;
29 int *licomb; 29 int *comb;
30 struct pullup_field *prev, *next; 30 struct pullup_field *prev, *next;
31 }; 31 };
32 32
33 struct pullup_frame 33 struct pullup_frame
34 { 34 {
52 /* Internal data */ 52 /* Internal data */
53 struct pullup_field *first, *last, *head; 53 struct pullup_field *first, *last, *head;
54 struct pullup_buffer *buffers; 54 struct pullup_buffer *buffers;
55 int nbuffers; 55 int nbuffers;
56 int (*diff)(unsigned char *, unsigned char *, int); 56 int (*diff)(unsigned char *, unsigned char *, int);
57 int (*licomb)(unsigned char *, unsigned char *, int); 57 int (*comb)(unsigned char *, unsigned char *, int);
58 int metric_w, metric_h, metric_len, metric_offset; 58 int metric_w, metric_h, metric_len, metric_offset;
59 struct pullup_frame *frame; 59 struct pullup_frame *frame;
60 }; 60 };
61 61
62 62