summaryrefslogtreecommitdiffstats
path: root/video
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-02-06 23:23:27 +0100
committerwm4 <wm4@nowhere>2015-02-06 23:23:27 +0100
commit62b0f64c249a07ee8a6391bac4b183229f664dfd (patch)
tree19c0b4cc3d3672947c90fc6a9887536851ba0ceb /video
parentbe5994a7818a63e16d78ed4817eb1ac490869bfe (diff)
downloadmpv-62b0f64c249a07ee8a6391bac4b183229f664dfd.tar.bz2
mpv-62b0f64c249a07ee8a6391bac4b183229f664dfd.tar.xz
Revert "vo_opengl: disable alpha by default"
This reverts commit a33b46194c3525cb585cc78b449ec275dbfd7f83. It turns out FFmpeg really considers this a bug, and fixed it by making the decoder output the correct pixel format. Fixes #1565. Reverts the fix #1528, though it should work fine with a recent git master FFmpeg.
Diffstat (limited to 'video')
-rw-r--r--video/out/gl_video.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/video/out/gl_video.c b/video/out/gl_video.c
index 231d77bdf3..c23e6ac436 100644
--- a/video/out/gl_video.c
+++ b/video/out/gl_video.c
@@ -325,7 +325,7 @@ const struct gl_video_opts gl_video_opts_def = {
.scalers = { "bilinear", "bilinear" },
.scaler_params = {{NAN, NAN}, {NAN, NAN}},
.scaler_radius = {3, 3},
- .alpha_mode = 0,
+ .alpha_mode = 2,
.background = {0, 0, 0, 255},
.gamma = 1.0f,
};
@@ -343,7 +343,7 @@ const struct gl_video_opts gl_video_opts_hq_def = {
.dscaler = "mitchell",
.scaler_params = {{NAN, NAN}, {NAN, NAN}},
.scaler_radius = {3, 3},
- .alpha_mode = 0,
+ .alpha_mode = 2,
.background = {0, 0, 0, 255},
.gamma = 1.0f,
};