summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordeva <deva>2005-06-16 21:54:21 +0000
committerdeva <deva>2005-06-16 21:54:21 +0000
commit60053525996c751ea9cdeddebbea8fa98e0c23a3 (patch)
tree289504fcc4cc8fdbe43f6f588ca92fc4b3147664
parente0592745a40dae2e14e5b6d9226f41a293ababc9 (diff)
*** empty log message ***R0_2_6
-rw-r--r--ChangeLog15
-rw-r--r--TODO7
-rw-r--r--configure.in2
-rw-r--r--src/mov_encoder.h5
4 files changed, 24 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index c061abe..22d50f2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
diff --git a/TODO b/TODO
index 57bb6f5..0674af0 100644
--- a/TODO
+++ b/TODO
@@ -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: