videoio.h
上传用户:hzhsqp
上传日期:2007-01-06
资源大小:1600k
文件大小:2k
源码类别:

IP电话/视频会议

开发平台:

Visual C++

  1. /*
  2.  * videoio.h
  3.  *
  4.  * Classes to support streaming video input (grabbing) and output.
  5.  *
  6.  * Portable Windows Library
  7.  *
  8.  * Copyright (c) 1993-2000 Equivalence Pty. Ltd.
  9.  *
  10.  * The contents of this file are subject to the Mozilla Public License
  11.  * Version 1.0 (the "License"); you may not use this file except in
  12.  * compliance with the License. You may obtain a copy of the License at
  13.  * http://www.mozilla.org/MPL/
  14.  *
  15.  * Software distributed under the License is distributed on an "AS IS"
  16.  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
  17.  * the License for the specific language governing rights and limitations
  18.  * under the License.
  19.  *
  20.  * The Original Code is Portable Windows Library.
  21.  *
  22.  * The Initial Developer of the Original Code is Equivalence Pty. Ltd.
  23.  *
  24.  * Contributor(s): ______________________________________.
  25.  *
  26.  * $Log: videoio.h,v $
  27.  * Revision 1.4  2000/07/26 02:54:41  robertj
  28.  * Fixed platform dependent code changing public functions to protected.
  29.  *
  30.  * Revision 1.3  2000/07/25 13:38:26  robertj
  31.  * Added frame rate parameter to video frame grabber.
  32.  *
  33.  * Revision 1.2  2000/07/25 13:14:07  robertj
  34.  * Got the video capture stuff going!
  35.  *
  36.  * Revision 1.1  2000/07/15 09:47:35  robertj
  37.  * Added video I/O device classes.
  38.  *
  39.  */
  40. #ifndef _PVIDEOIO
  41. #include <vfw.h>
  42. #include "../../videoio.h"
  43.   public:
  44.     virtual BOOL SetColourFormat(ColourFormat colourFormat);
  45.     virtual BOOL SetFrameRate(unsigned rate);
  46.     virtual BOOL SetFrameSize(unsigned width, unsigned height);
  47.   protected:
  48.     static LRESULT CALLBACK ErrorHandler(HWND hWnd, int id, LPCSTR err);
  49.     LRESULT HandleError(int id, LPCSTR err);
  50.     static LRESULT CALLBACK VideoHandler(HWND hWnd, LPVIDEOHDR vh);
  51.     LRESULT HandleVideo(LPVIDEOHDR vh);
  52.     BOOL InitialiseCapture();
  53.     void HandleCapture();
  54.     PThread     * captureThread;
  55.     PSyncPoint    threadStarted;
  56.     HWND          hCaptureWindow;
  57.     PSyncPoint    frameAvailable;
  58.     LPBYTE        lastFramePtr;
  59.     unsigned      lastFrameSize;
  60.     PMutex        lastFrameMutex;
  61.   friend class PVideoInputThread;
  62. };
  63. #endif