mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-24 02:20:56 +01:00
avfilter/af_afftfilt: call av_frame_copy_props()
This commit is contained in:
parent
5625f0542d
commit
697e0fc062
1 changed files with 1 additions and 1 deletions
|
|
@ -345,7 +345,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
|
|||
goto fail;
|
||||
}
|
||||
|
||||
out->pts = in->pts;
|
||||
av_frame_copy_props(out, in);
|
||||
out->nb_samples = in->nb_samples;
|
||||
|
||||
for (ch = 0; ch < inlink->ch_layout.nb_channels; ch++) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue