mirror of https://git.ffmpeg.org/ffmpeg.git
ass: fix DAR calculation.
Found-by: REN Lifeng <renlifeng@wowfly.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
4257ce112c
commit
b89f94077d
|
@ -134,7 +134,7 @@ static int config_input(AVFilterLink *inlink)
|
|||
const AVPixFmtDescriptor *pix_desc = &av_pix_fmt_descriptors[inlink->format];
|
||||
double sar = inlink->sample_aspect_ratio.num ?
|
||||
av_q2d(inlink->sample_aspect_ratio) : 1;
|
||||
double dar = inlink->w / inlink->h * sar;
|
||||
double dar = inlink->w / (double)inlink->h * sar;
|
||||
|
||||
av_image_fill_max_pixsteps(ass->pix_step, NULL, pix_desc);
|
||||
ff_fill_rgba_map(ass->rgba_map, inlink->format);
|
||||
|
|
Loading…
Reference in New Issue