From 897867cc9d3bc869317666993a9cc6ef38c163e2 Mon Sep 17 00:00:00 2001 From: deva Date: Thu, 15 Jun 2006 17:35:33 +0000 Subject: Prepared for the client to use uncompressed frames (YUV422 instead of DV). Still a lot of work to do though! --- lib/frame_stream.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'lib/frame_stream.h') diff --git a/lib/frame_stream.h b/lib/frame_stream.h index bc0b9a2..32fea15 100644 --- a/lib/frame_stream.h +++ b/lib/frame_stream.h @@ -26,14 +26,16 @@ */ #include "config.h" #ifndef __MIAV_FRAME_STREAM_H__ -#define __MIAV_FRAME_STREAM_H__ +#define __MIAV_FRAME_STREAM_H_ + +#include "frame.h" class frame_stream { public: frame_stream() {} virtual ~frame_stream() {} - virtual unsigned char *readFrame() = 0; + virtual Frame *readFrame() = 0; }; -- cgit v1.2.3