mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-29 22:00:58 +02:00
lavfi/f_drawgraph: forward input frame durations
This commit is contained in:
parent
3ce1616106
commit
476c90c207
@ -168,7 +168,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
|
||||
AVDictionaryEntry *e;
|
||||
AVFrame *out = s->out;
|
||||
AVFrame *clone = NULL;
|
||||
int64_t in_pts, out_pts;
|
||||
int64_t in_pts, out_pts, in_duration;
|
||||
int i;
|
||||
|
||||
if (s->slide == 4 && s->nb_values >= s->values_size[0] / sizeof(float)) {
|
||||
@ -320,6 +320,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
|
||||
s->x++;
|
||||
|
||||
in_pts = in->pts;
|
||||
in_duration = in->duration;
|
||||
|
||||
av_frame_free(&in);
|
||||
|
||||
@ -336,6 +337,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
|
||||
return AVERROR(ENOMEM);
|
||||
|
||||
clone->pts = s->prev_pts = out_pts;
|
||||
clone->duration = av_rescale_q(in_duration, inlink->time_base, outlink->time_base);
|
||||
return ff_filter_frame(outlink, clone);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user