diff options
author | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-03-24 14:15:36 +0000 |
---|---|---|
committer | Guenter Bartsch <guenter@users.sourceforge.net> | 2002-03-24 14:15:36 +0000 |
commit | 0b1e872fa96412fdf7dc54b8f18ab34ac148e65d (patch) | |
tree | a0da29367fe2d667485a63d38c7e6e5380916a99 /src/liba52/parse.c | |
parent | 6d9934d47e664e902402f49c4cf962de5627bc87 (diff) | |
download | xine-lib-0b1e872fa96412fdf7dc54b8f18ab34ac148e65d.tar.gz xine-lib-0b1e872fa96412fdf7dc54b8f18ab34ac148e65d.tar.bz2 |
scr unregister patch from Michael Roitzsch, buffer mem release fix, xmalloc_aligned cleanup - fb vo plugin needs to be fixed for this one
CVS patchset: 1626
CVS date: 2002/03/24 14:15:36
Diffstat (limited to 'src/liba52/parse.c')
-rw-r--r-- | src/liba52/parse.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/liba52/parse.c b/src/liba52/parse.c index e92474761..e98841902 100644 --- a/src/liba52/parse.c +++ b/src/liba52/parse.c @@ -42,12 +42,13 @@ static uint8_t halfrate[12] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3}; sample_t * a52_init (uint32_t mm_accel) { - sample_t * samples; + sample_t * samples, *samples_base; int i; imdct_init (mm_accel); - samples = xine_xmalloc_aligned (16, 256 * 12 * sizeof (sample_t)); + samples = xine_xmalloc_aligned (16, 256 * 12 * sizeof (sample_t), + &samples_base); if (samples == NULL) return NULL; |