[Ekiga-devel-list] patch for SIF support in incoming video



Hi all,

the enclosed patch enables ekiga to receive video in a SIF (320x240) resolution. Actually it just
extends the check in videooutput.cpp to accept SIF as well. I found it working quite well.

Matthias


		
___________________________________________________________ 
Telefonate ohne weitere Kosten vom PC zum PC: http://messenger.yahoo.de
--- src/devices/videooutput.cpp.sav	2006-06-12 23:10:55.000000000 +0200
+++ src/devices/videooutput.cpp	2006-11-03 18:40:43.000000000 +0100
@@ -263,10 +263,10 @@
   if (x+width > width || y+height > height)
     return FALSE;
 
-  if (width != GM_CIF_WIDTH && width != GM_QCIF_WIDTH) 
+  if (width != GM_CIF_WIDTH && width != GM_QCIF_WIDTH && width != GM_SIF_WIDTH) 
     return FALSE;
   
-  if (height != GM_CIF_HEIGHT && height != GM_QCIF_HEIGHT) 
+  if (height != GM_CIF_HEIGHT && height != GM_QCIF_HEIGHT && height != GM_SIF_HEIGHT) 
     return FALSE;
 
   if (!endFrame)


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]