mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2025-01-26 14:16:00 +00:00
avfilter/vf_decimate: fix typo in fraction
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
e8586ecb86
commit
06987dab97
@ -217,7 +217,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
|
||||
av_frame_free(&frame);
|
||||
frame = dm->clean_src[i];
|
||||
}
|
||||
frame->pts = av_rescale_q(outlink->frame_count, dm->ts_unit, (AVRational){1,0}) +
|
||||
frame->pts = av_rescale_q(outlink->frame_count, dm->ts_unit, (AVRational){1,1}) +
|
||||
(dm->start_pts == AV_NOPTS_VALUE ? 0 : dm->start_pts);
|
||||
ret = ff_filter_frame(outlink, frame);
|
||||
if (ret < 0)
|
||||
|
Loading…
x
Reference in New Issue
Block a user