[vlc-commits] commit: Codec/vorbis: follow tremor API change. (Konstantin Pavlov )
git at videolan.org
git at videolan.org
Tue Dec 21 23:35:53 CET 2010
vlc | branch: master | Konstantin Pavlov <thresh at videolan.org> | Mon Nov 22 23:38:27 2010 +0300| [e7e6ff45689e3b1d17e057b1701b72c70af250d2] | committer: Konstantin Pavlov
Codec/vorbis: follow tremor API change.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e7e6ff45689e3b1d17e057b1701b72c70af250d2
---
modules/codec/vorbis.c | 4 ----
1 files changed, 0 insertions(+), 4 deletions(-)
diff --git a/modules/codec/vorbis.c b/modules/codec/vorbis.c
index 7a4ffa9..8ec8c1b 100644
--- a/modules/codec/vorbis.c
+++ b/modules/codec/vorbis.c
@@ -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
More information about the vlc-commits
mailing list