diff options
author | Paul B Mahol <onemda@gmail.com> | 2023-05-14 20:47:08 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2023-05-14 20:58:08 +0200 |
commit | 66175c2dca357bc6c856249c934f96b9ca023aa4 (patch) | |
tree | 67eb147fd8267a2272adbb7937461715d1a3ed8a /libavfilter/f_graphmonitor.c | |
parent | 932ccf9e7d159887766fa9a1f3ef171b8a89a3dd (diff) | |
download | ffmpeg-66175c2dca357bc6c856249c934f96b9ca023aa4.tar.gz |
avfilter/f_graphmonitor: set output frame duration
Diffstat (limited to 'libavfilter/f_graphmonitor.c')
-rw-r--r-- | libavfilter/f_graphmonitor.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/f_graphmonitor.c b/libavfilter/f_graphmonitor.c index de9aa395fe..d48f9fd990 100644 --- a/libavfilter/f_graphmonitor.c +++ b/libavfilter/f_graphmonitor.c @@ -402,6 +402,7 @@ static int create_frame(AVFilterContext *ctx, int64_t pts) } out->pts = pts; + out->duration = 1; s->pts = pts + 1; return ff_filter_frame(outlink, out); error: |