1
mirror of https://github.com/mpv-player/mpv synced 2024-10-22 08:51:57 +02:00

vd: minor simplification

This commit is contained in:
wm4 2012-11-01 00:51:07 +01:00
parent 9643590889
commit cb77400006

View File

@ -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");
}