avfilter/vf_elbg: call av_frame_copy_props()

This commit is contained in:
Paul B Mahol 2023-01-17 22:36:03 +01:00
parent ceb52d47a3
commit 3cc08688e3

View File

@ -187,7 +187,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
av_frame_free(&frame);
return AVERROR(ENOMEM);
}
out->pts = frame->pts;
av_frame_copy_props(out, frame);
av_frame_free(&frame);
pal = (uint32_t *)out->data[1];
p0 = (uint8_t *)out->data[0];