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

📄 video_v4l_source.h

📁 完整的RTP RTSP代码库
💻 H
字号:
/* * The contents of this file are subject to the Mozilla Public * License Version 1.1 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.mozilla.org/MPL/ *  * Software distributed under the License is distributed on an "AS * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or * implied. See the License for the specific language governing * rights and limitations under the License. *  * The Original Code is MPEG4IP. *  * The Initial Developer of the Original Code is Cisco Systems Inc. * Portions created by Cisco Systems Inc. are * Copyright (C) Cisco Systems Inc. 2000, 2001.  All Rights Reserved. *  * Contributor(s):  *		Dave Mackie		dmackie@cisco.com *		Bill May 		wmay@cisco.com */#ifndef __VIDEO_V4L_SOURCE_H__#define __VIDEO_V4L_SOURCE_H__#include <sys/types.h>#include <sys/ioctl.h>#include <linux/videodev.h>#include "media_source.h"#include "video_encoder.h"const char *get_linux_video_type(void);#if 1#include "video_v4l2_source.h"#else// note - we no longer support v4l interfacesclass CV4LVideoSource : public CMediaSource {public:	CV4LVideoSource() : CMediaSource() {		m_videoDevice = -1;		m_videoMap = NULL;		m_videoFrameMap = NULL;		m_decimate_filter = false;	}	static bool InitialVideoProbe(CLiveConfig* pConfig);	bool IsDone() {		return false;	// live capture is inexhaustible	}	float GetProgress() {		return 0.0;		// live capture device is inexhaustible	}	bool SetPictureControls();	void IndicateReleaseFrame(uint8_t index) {	  // indicate which index needs to be released before next acquire	  SDL_LockMutex(m_v4l_mutex);	  m_release_index_mask |= (1 << index);	  SDL_UnlockMutex(m_v4l_mutex);	  SDL_SemPost(m_myMsgQueueSemaphore);	};	virtual const char* name() {	  return "CV4LVideoSource";	}protected:	int ThreadMain(void);	void DoStartCapture(void);	void DoStopCapture(void);	bool Init(void);	bool InitDevice(void);	void ReleaseDevice(void);	void ProcessVideo(void);	int8_t AcquireFrame(Timestamp &frameTimestamp);	void ReleaseFrames(void);	void SetVideoAudioMute(bool mute);	Timestamp CalculateVideoTimestampFromFrames (uint64_t frame) {	  double duration = frame;	  duration *= TimestampTicks;	  duration /= m_videoSrcFrameRate;	  return m_videoCaptureStartTimestamp + (Timestamp)duration;	}protected:	u_int8_t			m_maxPasses;	int					m_videoDevice;	struct video_mbuf	m_videoMbuf;	void*				m_videoMap;	struct video_mmap*	m_videoFrameMap;	Timestamp m_videoCaptureStartTimestamp;	uint64_t m_videoFrames;	Duration m_videoSrcFrameDuration;	int8_t				m_captureHead;	int8_t				m_encodeHead;	float				m_videoSrcFrameRate;	uint64_t *m_videoFrameMapFrame;	Timestamp *m_videoFrameMapTimestamp;	uint64_t m_lastVideoFrameMapFrameLoaded;	Timestamp m_lastVideoFrameMapTimestampLoaded;	bool            m_cacheTimestamp;	bool m_decimate_filter;	SDL_mutex *m_v4l_mutex;	uint32_t m_release_index_mask;	bool m_videoNeedRgbToYuv;};#endifclass CVideoCapabilities : public CCapabilities {public:	CVideoCapabilities(const char* deviceName) :	  CCapabilities(deviceName) {		m_canOpen = false;		m_canCapture = false;		m_driverName = NULL;		m_numInputs = 0;		m_inputNames = NULL;		m_inputSignalTypes = NULL;		m_inputHasTuners = NULL;		m_inputTunerSignalTypes = NULL;		m_hasAudio = false;		ProbeDevice();	}	~CVideoCapabilities() {		free(m_driverName);		for (int i = 0; i < m_numInputs; i++) {			free(m_inputNames[i]);		}		free(m_inputNames);		free(m_inputSignalTypes);		free(m_inputHasTuners);		free(m_inputTunerSignalTypes);	}	bool IsValid() {		return m_canOpen && m_canCapture;	}  void Display(CLiveConfig *pConfig, 	       char *msg, 	       uint32_t max_len);public:	bool		m_canOpen;	bool		m_canCapture;	// N.B. the rest of the fields are only valid 	// if m_canOpen and m_canCapture are both true	char*		m_driverName; 	u_int16_t	m_numInputs;	u_int16_t	m_minWidth;	u_int16_t	m_minHeight;	u_int16_t	m_maxWidth;	u_int16_t	m_maxHeight;	// each of these points at m_numInputs values	char**		m_inputNames;	u_int8_t*	m_inputSignalTypes;			// current signal type of input	bool*		m_inputHasTuners;	u_int8_t*	m_inputTunerSignalTypes;	// possible signal types from tuner	bool		m_hasAudio;protected:	bool ProbeDevice(void);};#endif /* __VIDEO_V4L_SOURCE_H__ */

⌨️ 快捷键说明

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