0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

vo_wayland: silence shadowing warning

No real problem.
This commit is contained in:
wm4 2014-01-29 17:16:36 +01:00
parent 5035bccb41
commit 5c8ec31ba3

View File

@ -621,10 +621,10 @@ static int reconfig(struct vo *vo, struct mp_image_params *fmt, int flags)
// overides alpha
// use rgb565 if performance is your main concern
if (p->use_rgb565) {
const struct fmtentry *fmt =
const struct fmtentry *mp_fmt =
is_wayland_format_supported(p, WL_SHM_FORMAT_RGB565);
if (fmt)
p->pref_format = fmt;
if (mp_fmt)
p->pref_format = mp_fmt;
}
p->bytes_per_pixel = mp_imgfmt_get_desc(p->pref_format->mp_fmt).bytes[0];