summaryrefslogtreecommitdiff
path: root/2005/i/robert/src
diff options
context:
space:
mode:
authordufourj2005-05-06 19:33:18 +0000
committerdufourj2005-05-06 19:33:18 +0000
commit121d2ee5661e38d0843621a2007d1788c0f150ad (patch)
tree6bc25987105489bafb5a93b00330a527b2845baa /2005/i/robert/src
parenta95c0b822899c7004cfe06e1a6dfb84461ebc125 (diff)
Config :
Rajout du paramêtre de temporisation de début de match Video4Linux : Correction de warnings (à vérifier ?)
Diffstat (limited to '2005/i/robert/src')
-rw-r--r--2005/i/robert/src/video4linux/video4linux.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/2005/i/robert/src/video4linux/video4linux.cc b/2005/i/robert/src/video4linux/video4linux.cc
index ddffde9..4f0d432 100644
--- a/2005/i/robert/src/video4linux/video4linux.cc
+++ b/2005/i/robert/src/video4linux/video4linux.cc
@@ -81,9 +81,9 @@ Video4Linux::read (uint8_t *buf, unsigned size)
memcpy (buf, map_, size);
break;
case Image::yuv:
- for (unsigned i = 0; i < height_/2; ++i)
+ for (int i = 0; i < height_/2; ++i)
{
- for (unsigned j = 0; j < width_/2; ++j)
+ for (int j = 0; j < width_/2; ++j)
{
*dst++ = *srcY++; *dst2++ = *srcY2++;
*dst++ = *srcU; *dst2++ = *srcU;