From 35fe66abbc9a6d151cedbc8d0261dc007aa71fe2 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Fri, 29 Apr 2011 13:12:39 +0200 Subject: lavfi: rename AVFilterBufferRefVideoProps.pixel_aspect to sample_aspect_ratio Improve consistency with libavcodec. This breaks libavfilter API/ABI. The non-sequential 2.1.0 -> 2.4.0 bump is due to the mess previously done with the lavfi minor number. --- cmdutils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmdutils.c') diff --git a/cmdutils.c b/cmdutils.c index 3ad29afc90..dd19bbffaf 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -912,7 +912,7 @@ int get_filtered_video_frame(AVFilterContext *ctx, AVFrame *frame, frame->top_field_first = picref->video->top_field_first; frame->key_frame = picref->video->key_frame; frame->pict_type = picref->video->pict_type; - frame->sample_aspect_ratio = picref->video->pixel_aspect; + frame->sample_aspect_ratio = picref->video->sample_aspect_ratio; return 1; } -- cgit v1.2.3