X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=spxdec_filter.c;h=08eac02a557b2d503646666edd7ffb35e1c5c5f7;hb=9055c71be97f1095dcdbd83da305b600f204f763;hp=18b50267af27ec26fc0fe3a09cb8a6a9425d4e9b;hpb=26a032fffa6c6e6f092ed3d14c2b5f08e5c736d6;p=paraslash.git diff --git a/spxdec_filter.c b/spxdec_filter.c index 18b50267..08eac02a 100644 --- a/spxdec_filter.c +++ b/spxdec_filter.c @@ -171,7 +171,7 @@ static int speexdec_write_frames(int packet_no, if (new_frame_size <= 0) continue; samples = new_frame_size * psd->shi.channels; - btr_output = alloc(2 * samples); + btr_output = arr_alloc(samples, 2); for (i = 0; i < samples; i++) btr_output[i] = read_u16(output + i + skip_idx); btr_add_output((char *)btr_output, samples * 2, btrn); @@ -246,7 +246,7 @@ static int compute_skip_samples(ogg_page *og, struct private_spxdec_data *psd) return ret; } -static int speexdec_post_select(__a_unused struct sched *s, void *context) +static int speexdec_post_monitor(__a_unused struct sched *s, void *context) { struct filter_node *fn = context; struct private_spxdec_data *psd = fn->private_data; @@ -305,7 +305,7 @@ fail: const struct filter lsg_filter_cmd_com_spxdec_user_data = { .open = spxdec_open, .close = speexdec_close, - .pre_select = generic_filter_pre_select, - .post_select = speexdec_post_select, + .pre_monitor = generic_filter_pre_monitor, + .post_monitor = speexdec_post_monitor, .execute = speexdec_execute, };