interface.c 5.04 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * Copyright (c) Michael Hipp and other authors of the mpglib project.
 *
 * 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
16
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17 18
 */

19
#include "config.h"
20
#include <stdlib.h>
21
#include <stdarg.h>
22 23
#include <stdio.h>

24 25
#include "windef.h"
#include "winbase.h"
26
#include "wine/debug.h"
27 28 29
#include "mpg123.h"
#include "mpglib.h"

30
WINE_DEFAULT_DEBUG_CHANNEL(mpeg3);
31 32 33 34 35 36 37 38 39 40 41 42 43 44

BOOL InitMP3(struct mpstr *mp)
{
	static int init = 0;

	memset(mp,0,sizeof(struct mpstr));

	mp->framesize = 0;
	mp->fsizeold = -1;
	mp->bsize = 0;
	mp->head = mp->tail = NULL;
	mp->fr.single = -1;
	mp->bsnum = 0;
	mp->synth_bo = 1;
45
	mp->fr.mp = mp;
46 47 48 49 50 51 52 53 54 55 56

	if(!init) {
		init = 1;
		make_decode_tables(32767);
		init_layer2();
		init_layer3(SBLIMIT);
	}

	return !0;
}

57
void ClearMP3Buffer(struct mpstr *mp)
58 59 60 61 62
{
	struct buf *b,*bn;

	b = mp->tail;
	while(b) {
63
		HeapFree(GetProcessHeap(), 0, b->pnt);
64
		bn = b->next;
65
		HeapFree(GetProcessHeap(), 0, b);
66 67
		b = bn;
	}
68 69 70
	mp->tail = NULL;
	mp->head = NULL;
	mp->bsize = 0;
71 72
}

Mike McCormack's avatar
Mike McCormack committed
73
static struct buf *addbuf(struct mpstr *mp,const unsigned char *buf,int size)
74 75 76
{
	struct buf *nbuf;

77
	nbuf = HeapAlloc(GetProcessHeap(), 0, sizeof(struct buf));
78
	if(!nbuf) {
79
		WARN("Out of memory!\n");
80 81
		return NULL;
	}
82
	nbuf->pnt = HeapAlloc(GetProcessHeap(), 0, size);
83
	if(!nbuf->pnt) {
84
		HeapFree(GetProcessHeap(), 0, nbuf);
85
		WARN("Out of memory!\n");
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
		return NULL;
	}
	nbuf->size = size;
	memcpy(nbuf->pnt,buf,size);
	nbuf->next = NULL;
	nbuf->prev = mp->head;
	nbuf->pos = 0;

	if(!mp->tail) {
		mp->tail = nbuf;
	}
	else {
	  mp->head->next = nbuf;
	}

	mp->head = nbuf;
	mp->bsize += size;

	return nbuf;
}

static void remove_buf(struct mpstr *mp)
{
  struct buf *buf = mp->tail;

  mp->tail = buf->next;
  if(mp->tail)
    mp->tail->prev = NULL;
  else {
    mp->tail = mp->head = NULL;
  }

118 119
  HeapFree(GetProcessHeap(), 0, buf->pnt);
  HeapFree(GetProcessHeap(), 0, buf);
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157

}

static int read_buf_byte(struct mpstr *mp)
{
	unsigned int b;

	int pos;

	pos = mp->tail->pos;
	while(pos >= mp->tail->size) {
		remove_buf(mp);
		pos = mp->tail->pos;
	}

	b = mp->tail->pnt[pos];
	mp->bsize--;
	mp->tail->pos++;


	return b;
}

static void read_head(struct mpstr *mp)
{
	unsigned long head;

	head = read_buf_byte(mp);
	head <<= 8;
	head |= read_buf_byte(mp);
	head <<= 8;
	head |= read_buf_byte(mp);
	head <<= 8;
	head |= read_buf_byte(mp);

	mp->header = head;
}

Mike McCormack's avatar
Mike McCormack committed
158
int decodeMP3(struct mpstr *mp,const unsigned char *in,int isize,unsigned char *out,
159 160 161 162 163
		int osize,int *done)
{
	int len;

	if(osize < 4608) {
164
		ERR("Output buffer too small\n");
165 166 167 168 169 170 171 172 173 174 175
		return MP3_ERR;
	}

	if(in) {
		if(addbuf(mp,in,isize) == NULL) {
			return MP3_ERR;
		}
	}

	/* First decode header */
	if(mp->framesize == 0) {
176
		int ret;
177 178 179 180
		if(mp->bsize < 4) {
			return MP3_NEED_MORE;
		}
		read_head(mp);
181 182 183 184 185 186 187 188
		while (!(ret = decode_header(&mp->fr,mp->header)) && mp->bsize)
		{
			mp->header = mp->header << 8;
			mp->header |= read_buf_byte(mp);
		}

		if (!ret) {
			return MP3_NEED_MORE;
189
		}
190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
		mp->framesize = mp->fr.framesize;
	}

	if(mp->fr.framesize > mp->bsize)
		return MP3_NEED_MORE;

	wordpointer = mp->bsspace[mp->bsnum] + 512;
	mp->bsnum = (mp->bsnum + 1) & 0x1;
	bitindex = 0;

	len = 0;
	while(len < mp->framesize) {
		int nlen;
		int blen = mp->tail->size - mp->tail->pos;
		if( (mp->framesize - len) <= blen) {
                  nlen = mp->framesize-len;
		}
		else {
                  nlen = blen;
                }
		memcpy(wordpointer+len,mp->tail->pnt+mp->tail->pos,nlen);
                len += nlen;
                mp->tail->pos += nlen;
		mp->bsize -= nlen;
                if(mp->tail->pos == mp->tail->size) {
                   remove_buf(mp);
                }
	}

	*done = 0;
	if(mp->fr.error_protection)
           getbits(16);
        switch(mp->fr.lay) {
          case 1:
224
	    do_layer1(&mp->fr,out,done);
225 226
            break;
          case 2:
227
	    do_layer2(&mp->fr,out,done);
228 229
            break;
          case 3:
230
	    do_layer3(&mp->fr,out,done);
231 232 233 234 235 236 237 238 239
            break;
        }

	mp->fsizeold = mp->framesize;
	mp->framesize = 0;

	return MP3_OK;
}

240
int set_pointer(struct mpstr *mp, long backstep)
241 242
{
  unsigned char *bsbufold;
243
  if(mp->fsizeold < 0 && backstep > 0) {
244 245
    /* This is not a bug if we just did seeking, the first frame is dropped then */
    WARN("Can't step back %ld!\n",backstep);
246 247
    return MP3_ERR;
  }
248
  bsbufold = mp->bsspace[mp->bsnum] + 512;
249 250
  wordpointer -= backstep;
  if (backstep)
251
    memcpy(wordpointer,bsbufold+mp->fsizeold-backstep,backstep);
252 253 254
  bitindex = 0;
  return MP3_OK;
}