ungrab mouse in fullscreen, SDL_VIDEO_X11_DGAMOUSE disabled, More bugfixes

git-svn-id: svn://code.dyne.org/veejay/trunk@769 eb8d1916-c9e9-0310-b8de-cf0c9472ead5
This commit is contained in:
Niels Elburg
2007-02-08 19:09:20 +00:00
parent 2c01086e03
commit 33d3e4510a
10 changed files with 261 additions and 208 deletions

View File

@@ -80,9 +80,10 @@ void lumamask_apply( VJFrame *frame, VJFrame *frame2, int width,
uint8_t *Y = frame->data[0];
uint8_t *Cb= frame->data[1];
uint8_t *Cr= frame->data[2];
uint8_t *Y2 = frame2->data[0];
uint8_t *Y2 = frame2->data[0];
uint8_t *Cb2 = frame2->data[1];
uint8_t *Cr2 = frame2->data[1];
uint8_t *Cr2 = frame2->data[2];
// keep copy of original frame
veejay_memcpy(buf[0], Y, width * height );
veejay_memcpy(buf[1], Cb, (width * height) );