⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 capinstream.h

📁 采集卡的驱动编程,具有较大的参考价值,特别开发视频采集的软件工程师有用
💻 H
字号:
// capinstream.h - include file for video input stream of Video Capture sample
//=============================================================================
//
// Compuware Corporation
// NuMega Lab
// 9 Townsend West
// Nashua, NH 03060  USA
//
// Copyright (c) 1998 Compuware Corporation. All Rights Reserved.
// Unpublished - rights reserved under the Copyright laws of the
// United States.
//
//=============================================================================

#ifndef __CAPINSTREAM_H__
#define __CAPINSTREAM_H__


#include "basestrm.h"

class VidcapInputStream : public VidcapBaseStream
{
public:
	VidcapInputStream(void);

	
	// -- stream initialization code --
	virtual void InitializeStream();

protected:

	// -- methods called from DispatchData method for hardware read/write --
	virtual void OnWrite(PHW_STREAM_REQUEST_BLOCK pSrb);

	virtual void OnSetState(PHW_STREAM_REQUEST_BLOCK pSrb);


	const static KS_DATARANGE_ANALOGVIDEO	m_StreamFormatAnalogVideo; 
	const static PKSDATAFORMAT				m_StreamFormats[];
	const static KSPIN_MEDIUM				m_Medium;
	const static HW_STREAM_INFORMATION		m_StreamInfo;
};

#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -