[vlc-devel] [PATCH] avcodec: reuse DEFAULT_ALIGN
Tristan Matthews
le.businessman at gmail.com
Tue Nov 5 19:52:27 CET 2013
From: Tristan Matthews <le.businessman at gmail.com>
---
modules/codec/avcodec/encoder.c | 8 +-------
1 file changed, 1 insertion(+), 7 deletions(-)
diff --git a/modules/codec/avcodec/encoder.c b/modules/codec/avcodec/encoder.c
index 53f403f..685946b 100644
--- a/modules/codec/avcodec/encoder.c
+++ b/modules/codec/avcodec/encoder.c
@@ -1163,12 +1163,6 @@ static block_t *handle_delay_buffer( encoder_t *p_enc, encoder_sys_t *p_sys, int
//How much we need to copy from new packet
const int leftover = leftover_samples * p_sys->p_context->channels * p_sys->i_sample_bytes;
-#if LIBAVUTIL_VERSION_CHECK( 51,27,2,46,100 )
- const int align = 0;
-#else
- const int align = 1;
-#endif
-
avcodec_get_frame_defaults( p_sys->frame );
p_sys->frame->format = p_sys->p_context->sample_fmt;
p_sys->frame->nb_samples = leftover_samples + p_sys->i_samples_delay;
@@ -1208,7 +1202,7 @@ static block_t *handle_delay_buffer( encoder_t *p_enc, encoder_sys_t *p_sys, int
if( avcodec_fill_audio_frame( p_sys->frame, p_sys->p_context->channels,
p_sys->p_context->sample_fmt, p_sys->b_planar ? p_sys->p_interleave_buf : p_sys->p_buffer,
p_sys->i_buffer_out,
- align) < 0 )
+ DEFAULT_ALIGN) < 0 )
{
msg_Err( p_enc, "filling error on fillup" );
p_sys->frame->nb_samples = 0;
--
1.8.3.1
More information about the vlc-devel
mailing list