X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=spxdec_filter.c;h=94a9c78835e93157be51753bc910f251820501e8;hb=08471ab23c0abdf0ddd7ff836a15bd81fbce7520;hp=5aa78b44bf79314dda28e82a83f0153f63d35e6d;hpb=e5de57de1b8bf1df96c152fc92f5a49f75d6d96c;p=paraslash.git diff --git a/spxdec_filter.c b/spxdec_filter.c index 5aa78b44..94a9c788 100644 --- a/spxdec_filter.c +++ b/spxdec_filter.c @@ -48,6 +48,7 @@ #include #include "para.h" +#include "portable_io.h" #include "list.h" #include "sched.h" #include "buffer_tree.h" @@ -121,12 +122,6 @@ static int speexdec_init(struct filter_node *fn) return 1; } -#if !defined(__LITTLE_ENDIAN__) && ( defined(WORDS_BIGENDIAN) || defined(__BIG_ENDIAN__) ) -#define le_short(s) ((short) ((unsigned short) (s) << 8) | ((unsigned short) (s) >> 8)) -#else -#define le_short(s) ((short) (s)) -#endif - /** * Size of the output buffer. * @@ -178,7 +173,7 @@ static int speexdec_write_frames(int packet_no, samples = new_frame_size * psd->shi.channels; btr_output = para_malloc(2 * samples); for (i = 0; i < samples; i++) - btr_output[i] = le_short(output[i + skip_idx]); + btr_output[i] = read_u16(output + i + skip_idx); btr_add_output((char *)btr_output, samples * 2, btrn); } return 1; @@ -251,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; @@ -310,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, };