diff options
author | Torsten Jager <t.jager@gmx.de> | 2014-05-30 15:05:50 +0200 |
---|---|---|
committer | Torsten Jager <t.jager@gmx.de> | 2014-05-30 15:05:50 +0200 |
commit | e3b6a1f138c83633fb9885c793ead4bf6093beab (patch) | |
tree | 262a612459078927affc0fa78cc957781fb2500e /src/video_out/video_out_opengl2.c | |
parent | 80a3f2b159cce2573db45291d5aac87c83f9325e (diff) | |
download | xine-lib-e3b6a1f138c83633fb9885c793ead4bf6093beab.tar.gz xine-lib-e3b6a1f138c83633fb9885c793ead4bf6093beab.tar.bz2 |
Add yuv overlay color matrix support.
"Never assume an API to be stable unless at least 1 month has passed after adding."
Diffstat (limited to 'src/video_out/video_out_opengl2.c')
-rw-r--r-- | src/video_out/video_out_opengl2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_out/video_out_opengl2.c b/src/video_out/video_out_opengl2.c index 45c5abf16..c2f7b2012 100644 --- a/src/video_out/video_out_opengl2.c +++ b/src/video_out/video_out_opengl2.c @@ -612,7 +612,7 @@ static void opengl2_overlay_blend (vo_driver_t *this_gen, vo_frame_t *frame_gen, if (overlay->rle) { if (!overlay->rgb_clut || !overlay->hili_rgb_clut) { - _x_overlay_clut_yuv2rgb(overlay); + _x_overlay_clut_yuv2rgb(overlay, this->color_standard); } } |