]> git.sesse.net Git - vlc/commitdiff
twolame: implement flushing on close
authorIlkka Ollakka <ileoo@videolan.org>
Mon, 6 Jan 2014 18:15:37 +0000 (20:15 +0200)
committerIlkka Ollakka <ileoo@videolan.org>
Wed, 8 Jan 2014 09:48:50 +0000 (11:48 +0200)
modules/codec/twolame.c

index 092fd7db8a35c1e8e4617cf370c7ff84d0f31053..996f4aa85e9a7d959df615722beecf799d05697b 100644 (file)
@@ -261,13 +261,29 @@ static void Bufferize( encoder_t *p_enc, int16_t *p_in, int i_nb_samples )
 static block_t *Encode( encoder_t *p_enc, block_t *p_aout_buf )
 {
     encoder_sys_t *p_sys = p_enc->p_sys;
+    block_t *p_chain = NULL;
+
+    if( unlikely( !p_aout_buf ) ) {
+        int i_used = 0;
 
-    /* FIXME:p_aout_buf is NULL when it's time to flush, does twolame has buffer to flush?*/
-    if( unlikely( !p_aout_buf ) ) return NULL;
+        i_used = twolame_encode_flush_interleaved( p_sys->p_twolame,
+                                p_sys->p_out_buffer, MAX_CODED_FRAME_SIZE );
+
+        if( i_used < 0 )
+            return NULL;
+
+        p_block = block_Alloc( i_used );
+        memcpy( p_block->p_buffer, p_sys->p_out_buffer, i_used );
+        p_block->i_length = (mtime_t)1000000 *
+                (mtime_t)MPEG_FRAME_SIZE / (mtime_t)p_enc->fmt_out.audio.i_rate;
+        p_block->i_dts = p_block->i_pts = p_sys->i_pts;
+        p_sys->i_pts += p_block->i_length;
+
+        return p_block;
+    }
 
     int16_t *p_buffer = (int16_t *)p_aout_buf->p_buffer;
     int i_nb_samples = p_aout_buf->i_nb_samples;
-    block_t *p_chain = NULL;
 
     p_sys->i_pts = p_aout_buf->i_pts -
                 (mtime_t)1000000 * (mtime_t)p_sys->i_nb_samples /