diff options
| -rw-r--r-- | ChangeLog | 15 | ||||
| -rw-r--r-- | TODO | 7 | ||||
| -rw-r--r-- | configure.in | 2 | ||||
| -rw-r--r-- | src/mov_encoder.h | 5 | 
4 files changed, 24 insertions, 5 deletions
@@ -2,10 +2,23 @@  Changelog for MIaV  ======================================= -Juni NN 2005 - MIaV version 0.2.4 +Juni 16 2005 - MIaV version 0.2.5 +--------------------------------------- +New Features: + - Moved clear button, and made it clear cpr as well. + - Clears images, when changing cpr +Bug Fixes: + - Removed server code, which built up a framequeue serverside. + +======================================= +Juni 15 2005 - MIaV version 0.2.4  ---------------------------------------  New Features:   - Skip every other frame, in player window, in order to save resources. + - Logging added + - A brand new filehandler, that wraps files at max filesize and +   removes raceconditions upon openening. + - Clear button added in the gui (clears images and cpr)  Bug Fixes:   - Fixed crash, when socket could not connect. @@ -14,11 +14,13 @@ http://www.linuxmanpages.com/man3/fame_start_frame.3.php  http://encyclopedia.laborlawtalk.com/YUV_4:2:0 -Create mpgs with exclusive. -Rewrite naming code!  open64 ?  Split files at some given (in config file) point? +getpwent +getgrent + +  ==========================================================================   TASKS (client)  ========================================================================== @@ -144,6 +146,7 @@ MiavConfig:   [x]	- Use error object.   [ ]	- Make code for input validity test.   [x]	- Initialize one global configuration object. + [ ]	- BUG: Parse error when string occur with length 1  ErrorObject:   [x]	- Make it. diff --git a/configure.in b/configure.in index 2ec244f..543b991 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@  # Filename: configure.in  AC_INIT(src/miav.cc) -AM_INIT_AUTOMAKE( miav, 0.2.4 ) +AM_INIT_AUTOMAKE( miav, 0.2.5 )  AC_PROG_CXX diff --git a/src/mov_encoder.h b/src/mov_encoder.h index 918768b..76f0c7a 100644 --- a/src/mov_encoder.h +++ b/src/mov_encoder.h @@ -36,6 +36,9 @@  /*   * $Log$ + * Revision 1.13  2005/06/16 21:54:22  deva + * *** empty log message *** + *   * Revision 1.12  2005/06/16 21:28:57  deva   * Rewrote thread object   * Fixed bug in mov_encoder (pushed read_sem too many times, whihc lead to @@ -94,7 +97,7 @@ using namespace std;  #include "info.h"  // size specifies the length of the buffer.  -#define FAME_BUFFER_SIZE	(2*720*576*4)	// FIXME: One size fits all... +#define FAME_BUFFER_SIZE	(1024*1024)	// FIXME: One size fits all...  class MovEncoder : public Thread {  public:  | 
