common.h 459 B

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