Skip to content

Commit

Permalink
vf_d3d11vpp: always insert filter for non-standard scaling modes
Browse files Browse the repository at this point in the history
Apparently, some processing is still desired by users even at a 1.0
scaling factor.

Fixes: mpv-player#14698 (comment)
  • Loading branch information
kasper93 committed Feb 19, 2025
1 parent 594bb62 commit 632332b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion video/filter/vf_d3d11vpp.c
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,8 @@ static void vf_d3d11vpp_process(struct mp_filter *vf)
p->require_filtering = p->params.hw_subfmt != p->out_params.hw_subfmt ||
p->params.w != p->out_params.w ||
p->params.h != p->out_params.h ||
p->opts->nvidia_true_hdr;
p->opts->nvidia_true_hdr ||
p->opts->scaling_mode != SCALING_BASIC;
}

if (!mp_refqueue_can_output(p->queue))
Expand Down

0 comments on commit 632332b

Please sign in to comment.