diff options
author | iovar <iovar@f606c939-3180-4ac9-a4b8-4b8779d57d0a> | 2007-07-08 15:15:58 +0000 |
---|---|---|
committer | iovar <iovar@f606c939-3180-4ac9-a4b8-4b8779d57d0a> | 2007-07-08 15:15:58 +0000 |
commit | a9d2aafd2c5e9a2c78315ec8bd8f8af6c4db726a (patch) | |
tree | fd09055dc2507a782a264097871f43b2cc7cd959 /recordmydesktop/include | |
parent | b8c10e8f2aae200efc2f00dd40ef4ff58a0f109f (diff) |
recordmydesktop.h: added global cache block arrays
git-svn-id: https://recordmydesktop.svn.sourceforge.net/svnroot/recordmydesktop/trunk@363 f606c939-3180-4ac9-a4b8-4b8779d57d0a
Diffstat (limited to 'recordmydesktop/include')
-rw-r--r-- | recordmydesktop/include/recordmydesktop.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/recordmydesktop/include/recordmydesktop.h b/recordmydesktop/include/recordmydesktop.h index ae17db4..0064fd7 100644 --- a/recordmydesktop/include/recordmydesktop.h +++ b/recordmydesktop/include/recordmydesktop.h @@ -32,7 +32,16 @@ #include <config.h> #endif +//header inclusion is completely fucked up +//I'll fix it, I promise #include "rmdtypes.h" + +//These are the cache blocks. They need to be accesible in the +//dbuf macros +u_int32_t *yblocks, + *ublocks, + *vblocks; + #include "rmdmacro.h" #include "rmdfunc.h" @@ -51,6 +60,9 @@ unsigned char Yr[256],Yg[256],Yb[256], //but they might be usefull later for profiling unsigned int frames_total, //frames calculated by total time expirations frames_lost; //the value of shame + + + //used to determine frame drop which can //happen on failure to receive a signal over a condition variable int capture_busy, |