Browse Source

avfilter/vf_maskedmerge: always use framesync timestamps

tags/n4.2
Paul B Mahol 6 years ago
parent
commit
74236f675e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/vf_maskedmerge.c

+ 1
- 1
libavfilter/vf_maskedmerge.c View File

@@ -136,7 +136,7 @@ static int process_frame(FFFrameSync *fs)
ctx->internal->execute(ctx, filter_slice, &td, NULL,
FFMIN(s->height[2], ff_filter_get_nb_threads(ctx)));
}
out->pts = av_rescale_q(base->pts, s->fs.time_base, outlink->time_base);
out->pts = av_rescale_q(s->fs.pts, s->fs.time_base, outlink->time_base);

return ff_filter_frame(outlink, out);
}


Loading…
Cancel
Save