aboutsummaryrefslogtreecommitdiffstats
path: root/libswresample/swresample.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-03-25 03:33:06 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-03-25 03:33:06 +0200
commit4f16153d35920970fededa3a05bbfd9dd3bc69b0 (patch)
tree63e47af66da280361eef6fc99170d06b886bd027 /libswresample/swresample.c
parent8bf95e8bd5c20eb940bd9583d3f947d8210eeb56 (diff)
downloadffmpeg-4f16153d35920970fededa3a05bbfd9dd3bc69b0.tar.gz
swr: allow flushing in multiple steps if the output is too small.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libswresample/swresample.c')
-rw-r--r--libswresample/swresample.c25
1 files changed, 14 insertions, 11 deletions
diff --git a/libswresample/swresample.c b/libswresample/swresample.c
index 44a2917ff9..5ce377fd6f 100644
--- a/libswresample/swresample.c
+++ b/libswresample/swresample.c
@@ -435,19 +435,22 @@ int swr_convert(struct SwrContext *s, uint8_t *out_arg[SWR_CH_MAX], int out_coun
if(!in_arg){
if(s->in_buffer_count){
- AudioData *a= &s->in_buffer;
- int i, j, ret;
- if((ret=realloc_audio(a, s->in_buffer_index + 2*s->in_buffer_count)) < 0)
- return ret;
- av_assert0(a->planar);
- for(i=0; i<a->ch_count; i++){
- for(j=0; j<s->in_buffer_count; j++){
- memcpy(a->ch[i] + (s->in_buffer_index+s->in_buffer_count+j )*a->bps,
- a->ch[i] + (s->in_buffer_index+s->in_buffer_count-j-1)*a->bps, a->bps);
+ if (!s->flushed) {
+ AudioData *a= &s->in_buffer;
+ int i, j, ret;
+ if((ret=realloc_audio(a, s->in_buffer_index + 2*s->in_buffer_count)) < 0)
+ return ret;
+ av_assert0(a->planar);
+ for(i=0; i<a->ch_count; i++){
+ for(j=0; j<s->in_buffer_count; j++){
+ memcpy(a->ch[i] + (s->in_buffer_index+s->in_buffer_count+j )*a->bps,
+ a->ch[i] + (s->in_buffer_index+s->in_buffer_count-j-1)*a->bps, a->bps);
+ }
}
+ s->in_buffer_count += (s->in_buffer_count+1)/2;
+ s->resample_in_constraint = 0;
+ s->flushed = 1;
}
- s->in_buffer_count += (s->in_buffer_count+1)/2;
- s->resample_in_constraint = 0;
}else{
return 0;
}