diff options
author | wm4 <wm4@nowhere> | 2015-09-23 22:16:36 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2015-09-23 22:16:36 +0200 |
commit | 65ad85790a0adf346066c002574bd9bc6af48066 (patch) | |
tree | 5758027f5a495ce1f21030cb5039f5ae05c9fa52 | |
parent | 17cd6798a69ca2fea1d7e7df692c71172183731f (diff) |
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.
-rw-r--r-- | video/out/opengl/video.c | 1 | ||||
-rw-r--r-- | video/out/opengl/video.h | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/video/out/opengl/video.c b/video/out/opengl/video.c index 45528d138a..21bebafc30 100644 --- a/video/out/opengl/video.c +++ b/video/out/opengl/video.c @@ -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, diff --git a/video/out/opengl/video.h b/video/out/opengl/video.h index f18e558951..c8657ff42a 100644 --- a/video/out/opengl/video.h +++ b/video/out/opengl/video.h @@ -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; |