Re: [libav-devel] [PATCH] lavr: fix the decision for writing directly to the output buffer

2012-11-17 Thread Luca Barbato
On 11/08/2012 11:19 PM, Justin Ruggles wrote: > If there are any samples remaining in the output fifo from previous conversion > calls, we have to output those samples first instead of doing direct output > of the current samples. > --- > libavresample/utils.c |9 + > 1 files changed,

Re: [libav-devel] [PATCH] lavr: fix the decision for writing directly to the output buffer

2012-11-17 Thread Justin Ruggles
On 11/08/2012 05:19 PM, Justin Ruggles wrote: > If there are any samples remaining in the output fifo from previous conversion > calls, we have to output those samples first instead of doing direct output > of the current samples. > --- > libavresample/utils.c |9 + > 1 files changed,

[libav-devel] [PATCH] lavr: fix the decision for writing directly to the output buffer

2012-11-08 Thread Justin Ruggles
If there are any samples remaining in the output fifo from previous conversion calls, we have to output those samples first instead of doing direct output of the current samples. --- libavresample/utils.c |9 + 1 files changed, 5 insertions(+), 4 deletions(-) diff --git a/libavresampl