[vlc-commits] twolame: fix build after revert

Ilkka Ollakka git at videolan.org
Thu Jan 9 09:57:56 CET 2014


vlc | branch: master | Ilkka Ollakka <ileoo at videolan.org> | Thu Jan  9 10:56:34 2014 +0200| [1f73fdab1c0d297e50594aff7cf48a98a3e35915] | committer: Ilkka Ollakka

twolame: fix build after revert

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=1f73fdab1c0d297e50594aff7cf48a98a3e35915
---

 modules/codec/twolame.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/modules/codec/twolame.c b/modules/codec/twolame.c
index 8aa41cb..041357b 100644
--- a/modules/codec/twolame.c
+++ b/modules/codec/twolame.c
@@ -266,8 +266,9 @@ static block_t *Encode( encoder_t *p_enc, block_t *p_aout_buf )
 
     if( unlikely( !p_aout_buf ) ) {
         int i_used = 0;
+        block_t *p_block;
 
-        i_used = twolame_encode_flush_interleaved( p_sys->p_twolame,
+        i_used = twolame_encode_flush( p_sys->p_twolame,
                                 p_sys->p_out_buffer, MAX_CODED_FRAME_SIZE );
 
         if( i_used < 0 )



More information about the vlc-commits mailing list