WebRtc_Word32 -> int32_t in video_capture/
BUG=314 Review URL: https://webrtc-codereview.appspot.com/1298005 git-svn-id: http://webrtc.googlecode.com/svn/trunk@3811 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
@ -23,13 +23,13 @@ namespace videocapturemodule
|
||||
class VideoCaptureModuleV4L2: public VideoCaptureImpl
|
||||
{
|
||||
public:
|
||||
VideoCaptureModuleV4L2(WebRtc_Word32 id);
|
||||
VideoCaptureModuleV4L2(int32_t id);
|
||||
virtual ~VideoCaptureModuleV4L2();
|
||||
virtual WebRtc_Word32 Init(const char* deviceUniqueId);
|
||||
virtual WebRtc_Word32 StartCapture(const VideoCaptureCapability& capability);
|
||||
virtual WebRtc_Word32 StopCapture();
|
||||
virtual int32_t Init(const char* deviceUniqueId);
|
||||
virtual int32_t StartCapture(const VideoCaptureCapability& capability);
|
||||
virtual int32_t StopCapture();
|
||||
virtual bool CaptureStarted();
|
||||
virtual WebRtc_Word32 CaptureSettings(VideoCaptureCapability& settings);
|
||||
virtual int32_t CaptureSettings(VideoCaptureCapability& settings);
|
||||
|
||||
private:
|
||||
enum {kNoOfV4L2Bufffers=4};
|
||||
@ -42,13 +42,13 @@ private:
|
||||
ThreadWrapper* _captureThread;
|
||||
CriticalSectionWrapper* _captureCritSect;
|
||||
|
||||
WebRtc_Word32 _deviceId;
|
||||
WebRtc_Word32 _deviceFd;
|
||||
int32_t _deviceId;
|
||||
int32_t _deviceFd;
|
||||
|
||||
WebRtc_Word32 _buffersAllocatedByDevice;
|
||||
WebRtc_Word32 _currentWidth;
|
||||
WebRtc_Word32 _currentHeight;
|
||||
WebRtc_Word32 _currentFrameRate;
|
||||
int32_t _buffersAllocatedByDevice;
|
||||
int32_t _currentWidth;
|
||||
int32_t _currentHeight;
|
||||
int32_t _currentFrameRate;
|
||||
bool _captureStarted;
|
||||
RawVideoType _captureVideoType;
|
||||
struct Buffer
|
||||
|
||||
Reference in New Issue
Block a user