aboutsummaryrefslogtreecommitdiff
path: root/bits.h
blob: 324dc0e234edafd37b5db299d029ba7cbeb7792a (plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/*
 * FAAD - Freeware Advanced Audio Decoder
 * Copyright (C) 2001 Menno Bakker
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.

 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 * $Id: bits.h,v 1.5 2005/05/09 21:29:56 wmaycisco Exp $
 */

#ifndef __BITS_H__
#define __BITS_H__ 1
#include "all.h"
#ifdef __cplusplus
extern "C" {
#endif

typedef struct _bitfile2
{
	/* bit input */
  unsigned char *buffer;
  unsigned char *rdptr;
    int m_alignment_offset;
  int incnt;
  int bitcnt;
  int framebits;
  int maxbits;
} bitfile;

void faad_initbits(bitfile *ld, unsigned char *buffer, uint32_t buflen);
uint32_t faad_getbits(bitfile *ld, int n);
uint32_t faad_getbits_fast(bitfile *ld, int n);
uint32_t faad_get1bit(bitfile *ld);
uint32_t faad_byte_align(bitfile *ld);
int faad_get_processed_bits(bitfile *ld);
  int faad_bits_done(bitfile *ld);

  void faad_bitdump(bitfile *ld);

extern unsigned int faad_bit_msk[33];

#define _SWAP(a) ((a[0] << 24) | (a[1] << 16) | (a[2] << 8) | a[3])

static __inline uint32_t faad_showbits(bitfile *ld, int n)
{
        unsigned char *v;
	int rbit = 32 - ld->bitcnt;
	uint32_t b;

	v = ld->rdptr;
	b = _SWAP(v);
	return ((b & faad_bit_msk[rbit]) >> (rbit-n));
}

static __inline void faad_flushbits(bitfile *ld, int n)
{
	ld->bitcnt += n;

	if (ld->bitcnt >= 8) {
		ld->rdptr += (ld->bitcnt>>3);
		ld->bitcnt &= 7;
	}

	ld->framebits += n;
}

#ifdef __cplusplus
}
#endif
#endif