diff options
author | Reinhard Nißl <rnissl@gmx.de> | 2007-07-26 22:07:20 +0200 |
---|---|---|
committer | Reinhard Nißl <rnissl@gmx.de> | 2007-07-26 22:07:20 +0200 |
commit | 681321431323a5e6d4f8a9cbaa629f2e963f61a1 (patch) | |
tree | c2e95fd2f9182f2463b6056f59030818a7963343 | |
parent | 3f6141b03a62e3bc33306d3a0abe763e833a50ea (diff) | |
download | xine-lib-681321431323a5e6d4f8a9cbaa629f2e963f61a1.tar.gz xine-lib-681321431323a5e6d4f8a9cbaa629f2e963f61a1.tar.bz2 |
report unsupported frame format when blending overlay
(transplanted from ce2ba83d5b347bb670e4aaa17a9fbcf21d87a811)
--HG--
extra : transplant_source : %CE%2B%A8%3D%5B4%7B%B6p%E4%AA%A1z%9F%BC%F2%1D%87%A8%11
-rw-r--r-- | src/video_out/video_out_xvmc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_out/video_out_xvmc.c b/src/video_out/video_out_xvmc.c index c4d76c1fe..a17e4d6a0 100644 --- a/src/video_out/video_out_xvmc.c +++ b/src/video_out/video_out_xvmc.c @@ -856,6 +856,8 @@ static void xvmc_overlay_blend (vo_driver_t *this_gen, _x_blend_yuy2(frame->vo_frame.base[0], overlay, frame->width, frame->height, frame->vo_frame.pitches[0], &this->alphablend_extra_data); + else + xprintf (this->xine, XINE_VERBOSITY_LOG, "xvmc_overlay_blend: overlay blending not supported for frame format %08x\n", frame->format); } } |