Index: webrtc/modules/video_capture/linux/device_info_linux.cc |
diff --git a/webrtc/modules/video_capture/linux/device_info_linux.cc b/webrtc/modules/video_capture/linux/device_info_linux.cc |
index ddcfe4bca1c6176246fdaf409ab44656463f051e..adaef580d72fafa6f9aa8eddba320a57dbd3c7ef 100644 |
--- a/webrtc/modules/video_capture/linux/device_info_linux.cc |
+++ b/webrtc/modules/video_capture/linux/device_info_linux.cc |
@@ -28,13 +28,13 @@ namespace webrtc |
namespace videocapturemodule |
{ |
VideoCaptureModule::DeviceInfo* |
-VideoCaptureImpl::CreateDeviceInfo(const int32_t id) |
+VideoCaptureImpl::CreateDeviceInfo() |
{ |
- return new videocapturemodule::DeviceInfoLinux(id); |
+ return new videocapturemodule::DeviceInfoLinux(); |
} |
-DeviceInfoLinux::DeviceInfoLinux(const int32_t id) |
- : DeviceInfoImpl(id) |
+DeviceInfoLinux::DeviceInfoLinux() |
+ : DeviceInfoImpl() |
{ |
} |
@@ -49,7 +49,8 @@ DeviceInfoLinux::~DeviceInfoLinux() |
uint32_t DeviceInfoLinux::NumberOfDevices() |
{ |
- WEBRTC_TRACE(webrtc::kTraceApiCall, webrtc::kTraceVideoCapture, _id, "%s", __FUNCTION__); |
+ WEBRTC_TRACE(webrtc::kTraceApiCall, |
+ webrtc::kTraceVideoCapture, 0, "%s", __FUNCTION__); |
uint32_t count = 0; |
char device[20]; |
@@ -78,7 +79,8 @@ int32_t DeviceInfoLinux::GetDeviceName( |
char* /*productUniqueIdUTF8*/, |
uint32_t /*productUniqueIdUTF8Length*/) |
{ |
- WEBRTC_TRACE(webrtc::kTraceApiCall, webrtc::kTraceVideoCapture, _id, "%s", __FUNCTION__); |
+ WEBRTC_TRACE(webrtc::kTraceApiCall, |
+ webrtc::kTraceVideoCapture, 0, "%s", __FUNCTION__); |
// Travel through /dev/video [0-63] |
uint32_t count = 0; |
@@ -108,7 +110,7 @@ int32_t DeviceInfoLinux::GetDeviceName( |
struct v4l2_capability cap; |
if (ioctl(fd, VIDIOC_QUERYCAP, &cap) < 0) |
{ |
- WEBRTC_TRACE(webrtc::kTraceError, webrtc::kTraceVideoCapture, _id, |
+ WEBRTC_TRACE(webrtc::kTraceError, webrtc::kTraceVideoCapture, 0, |
"error in querying the device capability for device %s. errno = %d", |
device, errno); |
close(fd); |
@@ -127,7 +129,8 @@ int32_t DeviceInfoLinux::GetDeviceName( |
} |
else |
{ |
- WEBRTC_TRACE(webrtc::kTraceError, webrtc::kTraceVideoCapture, _id, "buffer passed is too small"); |
+ WEBRTC_TRACE(webrtc::kTraceError, webrtc::kTraceVideoCapture, 0, |
+ "buffer passed is too small"); |
return -1; |
} |
@@ -142,7 +145,7 @@ int32_t DeviceInfoLinux::GetDeviceName( |
} |
else |
{ |
- WEBRTC_TRACE(webrtc::kTraceError, webrtc::kTraceVideoCapture, _id, |
+ WEBRTC_TRACE(webrtc::kTraceError, webrtc::kTraceVideoCapture, 0, |
"buffer passed is too small"); |
return -1; |
} |
@@ -162,10 +165,11 @@ int32_t DeviceInfoLinux::CreateCapabilityMap( |
(int32_t) strlen((char*) deviceUniqueIdUTF8); |
if (deviceUniqueIdUTF8Length > kVideoCaptureUniqueNameLength) |
{ |
- WEBRTC_TRACE(webrtc::kTraceError, webrtc::kTraceVideoCapture, _id, "Device name too long"); |
+ WEBRTC_TRACE(webrtc::kTraceError, |
+ webrtc::kTraceVideoCapture, 0, "Device name too long"); |
return -1; |
} |
- WEBRTC_TRACE(webrtc::kTraceInfo, webrtc::kTraceVideoCapture, _id, |
+ WEBRTC_TRACE(webrtc::kTraceInfo, webrtc::kTraceVideoCapture, 0, |
"CreateCapabilityMap called for device %s", deviceUniqueIdUTF8); |
/* detect /dev/video [0-63] entries */ |
@@ -205,7 +209,8 @@ int32_t DeviceInfoLinux::CreateCapabilityMap( |
if (!found) |
{ |
- WEBRTC_TRACE(webrtc::kTraceError, webrtc::kTraceVideoCapture, _id, "no matching device found"); |
+ WEBRTC_TRACE(webrtc::kTraceError, |
+ webrtc::kTraceVideoCapture, 0, "no matching device found"); |
return -1; |
} |
@@ -224,7 +229,7 @@ int32_t DeviceInfoLinux::CreateCapabilityMap( |
WEBRTC_TRACE(webrtc::kTraceInfo, |
webrtc::kTraceVideoCapture, |
- _id, |
+ 0, |
"CreateCapabilityMap %u", |
static_cast<unsigned int>(_captureCapabilities.size())); |
@@ -311,9 +316,10 @@ int32_t DeviceInfoLinux::FillCapabilities(int fd) |
_captureCapabilities.push_back(cap); |
index++; |
- WEBRTC_TRACE(webrtc::kTraceInfo, webrtc::kTraceVideoCapture, _id, |
- "Camera capability, width:%d height:%d type:%d fps:%d", |
- cap.width, cap.height, cap.rawType, cap.maxFPS); |
+ WEBRTC_TRACE( |
+ webrtc::kTraceInfo, webrtc::kTraceVideoCapture, 0, |
+ "Camera capability, width:%d height:%d type:%d fps:%d", |
+ cap.width, cap.height, cap.rawType, cap.maxFPS); |
} |
} |
} |
@@ -321,7 +327,7 @@ int32_t DeviceInfoLinux::FillCapabilities(int fd) |
WEBRTC_TRACE(webrtc::kTraceInfo, |
webrtc::kTraceVideoCapture, |
- _id, |
+ 0, |
"CreateCapabilityMap %u", |
static_cast<unsigned int>(_captureCapabilities.size())); |
return _captureCapabilities.size(); |