GNOME Bugzilla – Bug 763367
video-player background is transparent black
Last modified: 2016-03-11 01:07:44 UTC
Created attachment 323496 [details] [review] video-player: ensure background is opaque black ...and should be opaque black. I previously blindly opened a pull request on GitHub (https://github.com/GNOME/clutter-gst/pull/1) forgetting that Clutter was on GNOME infrastructure nowadays.
Review of attachment 323496 [details] [review]: ::: examples/video-player.c @@ +432,3 @@ GstIterator *iter; ClutterActor *stage; + ClutterColor stage_color = { 0xff, 0xff, 0xff, 0x00 }; Hmm... That would make it transparent white. Is there an actual reason you want to change this? Or you not able to see the video maybe?
Created attachment 323652 [details] [review] video-player: ensure background is opaque black (take two) (In reply to Lionel Landwerlin from comment #1) > Hmm... That would make it transparent white. Wow I must've written that while asleep. > Is there an actual reason you want to change this? On platforms that use an actual rgba surface (not intel without calling some extra function or something) it appears as transparent and looks weird. If you want to keep it transparent go ahead and WONTFIX this. I hit this in tcmmd (https://github.com/alban/tcmmd/pull/3) and thought I'd push the same commit here as it's clearly where tcdemo originall came from.
Review of attachment 323652 [details] [review]: Looks good.
Review of attachment 323652 [details] [review]: Pushed to 3.0 branch.