| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| 11 #include "webrtc/modules/video_capture/windows/device_info_ds.h" | 11 #include "webrtc/modules/video_capture/windows/device_info_ds.h" |
| 12 | 12 |
| 13 #include "webrtc/modules/video_capture/video_capture_config.h" | 13 #include "webrtc/modules/video_capture/video_capture_config.h" |
| 14 #include "webrtc/modules/video_capture/video_capture_delay.h" | 14 #include "webrtc/modules/video_capture/video_capture_delay.h" |
| 15 #include "webrtc/modules/video_capture/windows/help_functions_ds.h" | 15 #include "webrtc/modules/video_capture/windows/help_functions_ds.h" |
| 16 #include "webrtc/system_wrappers/interface/ref_count.h" | 16 #include "webrtc/system_wrappers/include/ref_count.h" |
| 17 #include "webrtc/system_wrappers/interface/trace.h" | 17 #include "webrtc/system_wrappers/include/trace.h" |
| 18 | 18 |
| 19 #include <Dvdmedia.h> | 19 #include <Dvdmedia.h> |
| 20 #include <Streams.h> | 20 #include <Streams.h> |
| 21 | 21 |
| 22 namespace webrtc | 22 namespace webrtc |
| 23 { | 23 { |
| 24 namespace videocapturemodule | 24 namespace videocapturemodule |
| 25 { | 25 { |
| 26 const int32_t NoWindowsCaptureDelays = 1; | 26 const int32_t NoWindowsCaptureDelays = 1; |
| 27 const DelayValues WindowsCaptureDelays[NoWindowsCaptureDelays] = { | 27 const DelayValues WindowsCaptureDelays[NoWindowsCaptureDelays] = { |
| (...skipping 761 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 789 // Release memory. | 789 // Release memory. |
| 790 if (uuid.pElems) | 790 if (uuid.pElems) |
| 791 { | 791 { |
| 792 CoTaskMemFree(uuid.pElems); | 792 CoTaskMemFree(uuid.pElems); |
| 793 } | 793 } |
| 794 filter->Release(); | 794 filter->Release(); |
| 795 return 0; | 795 return 0; |
| 796 } | 796 } |
| 797 } // namespace videocapturemodule | 797 } // namespace videocapturemodule |
| 798 } // namespace webrtc | 798 } // namespace webrtc |
| OLD | NEW |