Commit 1b99971d authored by Baptiste Coudurier's avatar Baptiste Coudurier Committed by Michael Niedermayer

vf_frei0r: set outlinks sample aspect ratio to 1

parent 8fbf825e
......@@ -418,6 +418,7 @@ static int source_config_props(AVFilterLink *outlink)
outlink->w = frei0r->w;
outlink->h = frei0r->h;
outlink->time_base = frei0r->time_base;
outlink->sample_aspect_ratio = (AVRational){1,1};
if (!(frei0r->instance = frei0r->construct(outlink->w, outlink->h))) {
av_log(ctx, AV_LOG_ERROR, "Impossible to load frei0r instance");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment