[vlc-commits] commit: Codec/vorbis: follow tremor API change.	(Konstantin Pavlov )
    git at videolan.org 
    git at videolan.org
       
    Wed Dec 22 00:00:07 CET 2010
    
    
  
vlc/vlc-1.1 | branch: master | Konstantin Pavlov <thresh at videolan.org> | Mon Nov 22 23:38:27 2010 +0300| [d41e06b4ed33a8b94220cf5dfa251dac8e9279ec] | committer: Konstantin Pavlov 
Codec/vorbis: follow tremor API change.
(cherry picked from commit e7e6ff45689e3b1d17e057b1701b72c70af250d2)
Signed-off-by: Konstantin Pavlov <thresh at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc/vlc-1.1.git/?a=commit;h=d41e06b4ed33a8b94220cf5dfa251dac8e9279ec
---
 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 b241bbf..8ef775f 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