~ubuntu-branches/ubuntu/lucid/mpg123/lucid

« back to all changes in this revision

Viewing changes to common.h

Tags: upstream-0.60
ImportĀ upstreamĀ versionĀ 0.60

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * common.h
3
 
 */
4
 
 
5
 
/* max = 1728 */
6
 
#define MAXFRAMESIZE 1792
7
 
#define HDRCMPMASK 0xfffffd00
8
 
 
9
 
extern void print_id3_tag(unsigned char *buf);
10
 
extern unsigned long firsthead;
11
 
extern int tabsel_123[2][3][16];
12
 
extern double compute_tpf(struct frame *fr);
13
 
extern double compute_bpf(struct frame *fr);
14
 
extern long compute_buffer_offset(struct frame *fr);
15
 
 
16
 
struct bitstream_info {
17
 
  int bitindex;
18
 
  unsigned char *wordpointer;
19
 
};
20
 
 
21
 
extern struct bitstream_info bsi;
22