diff options
Diffstat (limited to 'src/combined')
| -rw-r--r-- | src/combined/flac_decoder.c | 2 | ||||
| -rw-r--r-- | src/combined/nsf_decoder.c | 2 | ||||
| -rw-r--r-- | src/combined/wavpack_decoder.c | 2 | ||||
| -rw-r--r-- | src/combined/xine_speex_decoder.c | 2 | ||||
| -rw-r--r-- | src/combined/xine_theora_decoder.c | 2 | ||||
| -rw-r--r-- | src/combined/xine_vorbis_decoder.c | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/src/combined/flac_decoder.c b/src/combined/flac_decoder.c index babfde6ae..cc7c9570a 100644 --- a/src/combined/flac_decoder.c +++ b/src/combined/flac_decoder.c @@ -248,7 +248,7 @@ flac_decode_data (audio_decoder_t *this_gen, buf_element_t *buf) if (!this->output_open) { - this->output_open = this->stream->audio_out->open ( + this->output_open = (this->stream->audio_out->open) ( this->stream->audio_out, this->stream, bits_per_sample, diff --git a/src/combined/nsf_decoder.c b/src/combined/nsf_decoder.c index b1d8e706c..20472cd10 100644 --- a/src/combined/nsf_decoder.c +++ b/src/combined/nsf_decoder.c @@ -129,7 +129,7 @@ static void nsf_decode_data (audio_decoder_t *this_gen, buf_element_t *buf) { /* if the audio output is not open yet, open the audio output */ if (!this->output_open) { - this->output_open = this->stream->audio_out->open( + this->output_open = (this->stream->audio_out->open) ( this->stream->audio_out, this->stream, this->bits_per_sample, diff --git a/src/combined/wavpack_decoder.c b/src/combined/wavpack_decoder.c index 1fceb3137..0929d1b8e 100644 --- a/src/combined/wavpack_decoder.c +++ b/src/combined/wavpack_decoder.c @@ -173,7 +173,7 @@ static void wavpack_decode_data (audio_decoder_t *const this_gen, buf_element_t if (!this->output_open) { - this->output_open = this->stream->audio_out->open ( + this->output_open = (this->stream->audio_out->open) ( this->stream->audio_out, this->stream, this->bits_per_sample, diff --git a/src/combined/xine_speex_decoder.c b/src/combined/xine_speex_decoder.c index d886f9153..aca048c8f 100644 --- a/src/combined/xine_speex_decoder.c +++ b/src/combined/xine_speex_decoder.c @@ -272,7 +272,7 @@ static void speex_decode_data (audio_decoder_t *this_gen, buf_element_t *buf) { if (!this->output_open) { this->output_open = - this->stream->audio_out->open(this->stream->audio_out, + (this->stream->audio_out->open) (this->stream->audio_out, this->stream, 16, this->rate, diff --git a/src/combined/xine_theora_decoder.c b/src/combined/xine_theora_decoder.c index 41e11b054..d43affead 100644 --- a/src/combined/xine_theora_decoder.c +++ b/src/combined/xine_theora_decoder.c @@ -338,7 +338,7 @@ static video_decoder_t *theora_open_plugin (video_decoder_class_t *class_gen, xi theora_comment_init (&this->t_comment); theora_info_init (&this->t_info); - stream->video_out->open (stream->video_out, stream); + (stream->video_out->open) (stream->video_out, stream); return &this->theora_decoder; diff --git a/src/combined/xine_vorbis_decoder.c b/src/combined/xine_vorbis_decoder.c index 0dad6ed40..344bd8ed4 100644 --- a/src/combined/xine_vorbis_decoder.c +++ b/src/combined/xine_vorbis_decoder.c @@ -177,7 +177,7 @@ static void vorbis_decode_data (audio_decoder_t *this_gen, buf_element_t *buf) { this->convsize=MAX_NUM_SAMPLES/this->vi.channels; if (!this->output_open) { - this->output_open = this->stream->audio_out->open(this->stream->audio_out, + this->output_open = (this->stream->audio_out->open) (this->stream->audio_out, this->stream, 16, this->vi.rate, |
