00001 /* 00002 This file is part of the CVD Library. 00003 00004 Copyright (C) 2005 The Authors 00005 00006 This library is free software; you can redistribute it and/or 00007 modify it under the terms of the GNU Lesser General Public 00008 License as published by the Free Software Foundation; either 00009 version 2.1 of the License, or (at your option) any later version. 00010 00011 This library is distributed in the hope that it will be useful, 00012 but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00014 Lesser General Public License for more details. 00015 00016 You should have received a copy of the GNU Lesser General Public 00017 License along with this library; if not, write to the Free Software 00018 Foundation, Inc., 00019 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 00020 */ 00021 #ifndef CVD_VIDEOBUFFER_H 00022 #define CVD_VIDEOBUFFER_H 00023 00024 #include <cvd/videoframe.h> 00025 #include <cvd/exceptions.h> 00026 #include <memory> 00027 00028 namespace CVD { 00029 00032 class VideoBufferData 00033 { 00034 public: 00035 virtual ~VideoBufferData(){} 00036 }; 00037 00038 template<class T> class VideoBufferDataAuto: public VideoBufferData 00039 { 00040 private: 00041 T* data; 00042 00043 public: 00044 VideoBufferDataAuto(T* d) 00045 :data(d) 00046 {} 00047 00048 virtual ~VideoBufferDataAuto() 00049 { 00050 delete data; 00051 } 00052 }; 00053 00055 struct VideoBufferType 00056 { 00057 enum Type 00058 { 00063 NotLive, 00066 Live, 00069 Flushable 00070 }; 00071 }; 00072 00077 template <class T> 00078 class VideoBuffer 00079 { 00080 public: 00082 VideoBuffer(VideoBufferType::Type _type) 00083 :m_type(_type) 00084 {} 00085 00086 virtual ~VideoBuffer() 00087 {} 00088 00090 virtual ImageRef size()=0; 00092 virtual VideoFrame<T>* get_frame()=0; 00095 virtual void put_frame(VideoFrame<T>* f)=0; 00098 virtual bool frame_pending()=0; 00099 00119 VideoBufferType::Type type() 00120 { 00121 return m_type; 00122 } 00123 00128 virtual void flush() 00129 { 00130 if(type() == VideoBufferType::Flushable) 00131 while(frame_pending()) 00132 put_frame(get_frame()); 00133 } 00134 00136 virtual double frame_rate()=0; 00139 virtual void seek_to(double) 00140 {} 00141 00146 std::auto_ptr<VideoBufferData> extra_data; 00147 00148 private: 00149 VideoBufferType::Type m_type; 00150 }; 00151 00152 namespace Exceptions 00153 { 00156 namespace VideoBuffer 00157 { 00160 struct All: public CVD::Exceptions::All 00161 { 00162 }; 00163 00166 struct BadPutFrame: public All 00167 { 00168 BadPutFrame(); 00169 }; 00170 00174 struct BadColourSpace: public All 00175 { 00178 BadColourSpace(const std::string& colourspace, const std::string& b); 00179 }; 00180 } 00181 } 00182 00183 00184 00185 } 00186 00187 #endif