1
0
mirror of https://github.com/mpv-player/mpv synced 2025-04-18 13:16:43 +00:00

vo_opengl: remove unsued chroma_location field

This was redundant to forcing the value with vf_format, so the vo_opengl
sub-option was removed. This field is just a leftover.
This commit is contained in:
wm4 2015-09-23 22:16:36 +02:00
parent 17cd6798a6
commit 65ad85790a
2 changed files with 0 additions and 2 deletions

View File

@ -2092,7 +2092,6 @@ static void check_gl_features(struct gl_video *p)
.pbo = p->opts.pbo,
.fbo_format = p->opts.fbo_format,
.alpha_mode = p->opts.alpha_mode,
.chroma_location = p->opts.chroma_location,
.use_rectangle = p->opts.use_rectangle,
.background = p->opts.background,
.dither_algo = -1,

View File

@ -96,7 +96,6 @@ struct gl_video_opts {
int temporal_dither_period;
int fbo_format;
int alpha_mode;
int chroma_location;
int use_rectangle;
struct m_color background;
int interpolation;