You've already forked FFmpeg
							
							
				mirror of
				https://github.com/FFmpeg/FFmpeg.git
				synced 2025-10-30 23:18:11 +02:00 
			
		
		
		
	af_aresample: fix request_frame()
Fixes part of Ticket1341 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
		| @@ -37,6 +37,7 @@ typedef struct { | ||||
|     double ratio; | ||||
|     struct SwrContext *swr; | ||||
|     int64_t next_pts; | ||||
|     int req_fullfilled; | ||||
| } AResampleContext; | ||||
|  | ||||
| static av_cold int init(AVFilterContext *ctx, const char *args, void *opaque) | ||||
| @@ -208,6 +209,7 @@ static void filter_samples(AVFilterLink *inlink, AVFilterBufferRef *insamplesref | ||||
|     } | ||||
| #endif | ||||
|     ff_filter_samples(outlink, outsamplesref); | ||||
|     aresample->req_fullfilled= 1; | ||||
|     avfilter_unref_buffer(insamplesref); | ||||
| } | ||||
|  | ||||
| @@ -216,7 +218,12 @@ static int request_frame(AVFilterLink *outlink) | ||||
|     AVFilterContext *ctx = outlink->src; | ||||
|     AResampleContext *aresample = ctx->priv; | ||||
|     AVFilterLink *const inlink = outlink->src->inputs[0]; | ||||
|     int ret = avfilter_request_frame(ctx->inputs[0]); | ||||
|     int ret; | ||||
|  | ||||
|     aresample->req_fullfilled = 0; | ||||
|     do{ | ||||
|         ret = avfilter_request_frame(ctx->inputs[0]); | ||||
|     }while(!aresample->req_fullfilled && ret>=0); | ||||
|  | ||||
|     if (ret == AVERROR_EOF) { | ||||
|         AVFilterBufferRef *outsamplesref; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user