diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2014-05-14 14:24:34 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2014-05-14 14:24:34 +0200 |
commit | 0ff825e0e6fe5fc7238e3964d24779a07cb53518 (patch) | |
tree | 7b47a9fe58a09e12ed99fdfacc84fff198ce5ce1 /src/encoder.h | |
parent | 29ae5ac36d4ffc520232ff393b2455130ec0227e (diff) |
Split miav server and client apart. Port client to Qt4. Replace libraw1994 with libiec61883. Add unit tests for multiplexer and fix some bugs in it.
Diffstat (limited to 'src/encoder.h')
-rw-r--r-- | src/encoder.h | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/src/encoder.h b/src/encoder.h index 0fada07..cf87987 100644 --- a/src/encoder.h +++ b/src/encoder.h @@ -31,26 +31,21 @@ * along with MIaV; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#include "config.h" -#ifdef USE_GUI - #ifndef __RTVIDEOREC_ENCODER_H #define __RTVIDEOREC_ENCODER_H -#include "thread.h" - -#include "info.h" - #include <stdio.h> #include <stdlib.h> #include <string.h> -//#include <avformat.h> -#include "miav.h" #include "util.h" #include "package.h" #include "frame.h" #include "queue.h" +#include "thread.h" +#include "info.h" +#include "socket.h" +#include "network.h" // FIXME: One size fits all... #define VIDEO_BUFFER_SIZE (1024*1024) @@ -113,6 +108,4 @@ private: Network *n; }; -#endif - -#endif /*USE_GUI*/ +#endif/*__RTVIDEOREC_ENCODER_H*/ |