mirror of
https://github.com/game-stop/veejay.git
synced 2025-12-16 04:40:11 +01:00
cleanup, update email addr, fix compile warnings
This commit is contained in:
@@ -497,7 +497,7 @@ static void tr_422_to_444( uint8_t *buffer, int width, int height)
|
||||
}
|
||||
#else
|
||||
const int mmx_stride = stride >> 3;
|
||||
int left = (mmx_stride % 16); /* FIXME */
|
||||
// int left = (mmx_stride % 16); /* FIXME */
|
||||
for( y = height -1 ; y > 0; y -- ) {
|
||||
uint8_t *src = buffer + (y* stride);
|
||||
uint8_t *dst = buffer + (y* width);
|
||||
@@ -530,7 +530,7 @@ static void tr_422_to_444t(uint8_t *out, uint8_t *in, int width, int height)
|
||||
}
|
||||
#else
|
||||
const int mmx_stride = stride >> 3;
|
||||
int left = (mmx_stride % 16); /* FIXME */
|
||||
// int left = (mmx_stride % 16); /* FIXME */
|
||||
int x1 = 0;
|
||||
for( y = height -1 ; y > 0; y -- ) {
|
||||
uint8_t *src = in + (y* stride);
|
||||
|
||||
Reference in New Issue
Block a user