1
0
Fork 0
forked from len0rd/rockbox

Refactor alac decoder as preparation for upcoming m4a changes. The alac decoder does not need to use get_sample_info() to gather frame size or the number of consumed bytes.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29724 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Andree Buschmann 2011-04-16 19:08:50 +00:00
parent e4dd514e6f
commit 19f9fd0f5f
3 changed files with 15 additions and 16 deletions

View file

@ -20,6 +20,7 @@ typedef struct
int samplesize;
int numchannels;
int bytespersample;
int bytes_consumed;
/* stuff from setinfo */
uint32_t setinfo_max_samples_per_frame; /* 0x1000 = 4096 */ /* max samples per frame? */