mirror of
https://github.com/mpv-player/mpv
synced 2025-01-30 11:42:04 +00:00
vd: minor simplification
This commit is contained in:
parent
9643590889
commit
cb77400006
@ -92,9 +92,8 @@ int mpcodecs_config_vo(sh_video_t *sh, int w, int h,
|
||||
csp_again:
|
||||
|
||||
if (mp_msg_test(MSGT_DECVIDEO, MSGL_V)) {
|
||||
vf_instance_t *f = vf;
|
||||
mp_msg(MSGT_DECVIDEO, MSGL_V, "Trying filter chain:");
|
||||
for (f = vf; f; f = f->next)
|
||||
for (vf_instance_t *f = vf; f; f = f->next)
|
||||
mp_msg(MSGT_DECVIDEO, MSGL_V, " %s", f->info->name);
|
||||
mp_msg(MSGT_DECVIDEO, MSGL_V, "\n");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user