[FFmpeg-cvslog] avfilter/vf_decimate: fix typo in fraction

Michael Niedermayer git at videolan.org
Mon Dec 14 23:39:31 CET 2015


ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Mon Dec 14 22:59:38 2015 +0100| [06987dab972e275a70ea961be27bc12ff531da75] | committer: Michael Niedermayer

avfilter/vf_decimate: fix typo in fraction

Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=06987dab972e275a70ea961be27bc12ff531da75
---

 libavfilter/vf_decimate.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavfilter/vf_decimate.c b/libavfilter/vf_decimate.c
index a79fc02..cd374c3 100644
--- a/libavfilter/vf_decimate.c
+++ b/libavfilter/vf_decimate.c
@@ -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)



More information about the ffmpeg-cvslog mailing list