removed private generator function pointers, allows compiler to inline

This commit is contained in:
Martin Willi
2008-11-26 10:42:54 +00:00
parent e2cb07d713
commit 98bcdfe2c9
2 changed files with 154 additions and 276 deletions
+2 -2
View File
@@ -32,12 +32,12 @@ typedef struct generator_t generator_t;
/**
* Generating is done in a data buffer.
* This is thehe start size of this buffer in bytes.
* This is the start size of this buffer in bytes.
*/
#define GENERATOR_DATA_BUFFER_SIZE 500
/**
* Number of bytes to increase the buffer, if it is to small.
* Number of bytes to increase the buffer, if it is too small.
*/
#define GENERATOR_DATA_BUFFER_INCREASE_VALUE 500