mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-24 02:20:56 +01:00
avfilter/af_afir: call av_frame_copy_props()
This commit is contained in:
parent
cc7e984a05
commit
6a205d244a
1 changed files with 1 additions and 0 deletions
|
|
@ -143,6 +143,7 @@ static int fir_frame(AudioFIRContext *s, AVFrame *in, AVFilterLink *outlink)
|
|||
av_frame_free(&in);
|
||||
return AVERROR(ENOMEM);
|
||||
}
|
||||
av_frame_copy_props(out, in);
|
||||
out->pts = s->pts = in->pts;
|
||||
|
||||
s->in = in;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue