comparison loader/dshow/libwin32.h @ 1555:076c27342828

Start/Stop state flag fixed - requires for brightness/contrast/etc stuff...
author arpi
date Thu, 16 Aug 2001 15:41:03 +0000
parents da26060c81ef
children 261f5fd2c909
comparison
equal deleted inserted replaced
1554:db379aa38e51 1555:076c27342828
277 277
278 } 278 }
279 virtual ~IVideoDecoder(){}; 279 virtual ~IVideoDecoder(){};
280 virtual void StartInternal()=0; 280 virtual void StartInternal()=0;
281 virtual void StopInternal()=0; 281 virtual void StopInternal()=0;
282 void Stop(){ StopInternal();} 282 void Stop(){ StopInternal(); m_State = STOP;}
283 void Start(){StartInternal();} 283 void Start(){StartInternal(); m_State = START;}
284 284
285 const CodecInfo& record; 285 const CodecInfo& record;
286 DecodingMode m_Mode; // should we do precaching (or even change Quality on the fly) 286 DecodingMode m_Mode; // should we do precaching (or even change Quality on the fly)
287 DecodingState m_State; 287 DecodingState m_State;
288 int m_iDecpos; 288 int m_iDecpos;