/*************************************************************************************** * * IMPORTANT: READ BEFORE DOWNLOADING, COPYING, INSTALLING OR USING. * * By downloading, copying, installing or using the software you agree to this license. * If you do not agree to this license, do not download, install, * copy or use the software. * * Copyright (C) 2014-2022, Happytimesoft Corporation, all rights reserved. * * Redistribution and use in binary forms, with or without modification, are permitted. * * Unless required by applicable law or agreed to in writing, software distributed * under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific * language governing permissions and limitations under the License. * ****************************************************************************************/ #ifndef VIDIO_CAPTURE_MAC_H #define VIDIO_CAPTURE_MAC_H #include "video_capture.h" #include "video_capture_avf.h" /***************************************************************************************/ class CMVideoCapture : public CVideoCapture { public: // get video capture devices numbers static int getDeviceNums(); // list avaivalbe video capture device static void listDevice(); // get device index by device name static int getDeviceIndex(const char * name); // get the single instance static CVideoCapture * getInstance(int devid); BOOL initCapture(int codec, int width, int height, double framerate, int bitrate); BOOL startCapture(); void captureThread(); void videoCallBack(avf_video_data * data); private: CMVideoCapture(); CMVideoCapture(CMVideoCapture &obj); ~CMVideoCapture(); BOOL capture(); void stopCapture(); private: void * m_pCapture; }; #endif