Commit d41e06b4 authored by Konstantin Pavlov's avatar Konstantin Pavlov

Codec/vorbis: follow tremor API change.

(cherry picked from commit e7e6ff45689e3b1d17e057b1701b72c70af250d2)
Signed-off-by: default avatarKonstantin Pavlov <thresh@videolan.org>
parent 6050bd14
......@@ -486,11 +486,7 @@ static aout_buffer_t *DecodePacket( decoder_t *p_dec, ogg_packet *p_oggpacket )
#endif
if( p_oggpacket->bytes &&
#ifdef MODULE_NAME_IS_tremor
vorbis_synthesis( &p_sys->vb, p_oggpacket, 1 ) == 0 )
#else
vorbis_synthesis( &p_sys->vb, p_oggpacket ) == 0 )
#endif
vorbis_synthesis_blockin( &p_sys->vd, &p_sys->vb );
/* **pp_pcm is a multichannel float vector. In stereo, for
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment