avfilter/scale_npp: fix non-aligned output frame dimensions
This commit is contained in:
parent
9738990542
commit
c989427c16
@ -481,13 +481,16 @@ static int nppscale_scale(AVFilterContext *ctx, AVFrame *out, AVFrame *in)
|
|||||||
src = s->stages[i].frame;
|
src = s->stages[i].frame;
|
||||||
last_stage = i;
|
last_stage = i;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (last_stage < 0)
|
if (last_stage < 0)
|
||||||
return AVERROR_BUG;
|
return AVERROR_BUG;
|
||||||
|
|
||||||
ret = av_hwframe_get_buffer(src->hw_frames_ctx, s->tmp_frame, 0);
|
ret = av_hwframe_get_buffer(src->hw_frames_ctx, s->tmp_frame, 0);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
s->tmp_frame->width = src->width;
|
||||||
|
s->tmp_frame->height = src->height;
|
||||||
|
|
||||||
av_frame_move_ref(out, src);
|
av_frame_move_ref(out, src);
|
||||||
av_frame_move_ref(src, s->tmp_frame);
|
av_frame_move_ref(src, s->tmp_frame);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user