HomeSort by relevance Sort by last modified time
    Searched refs:VideoCapture (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium_org/media/video/capture/
video_capture.h 20 class MEDIA_EXPORT VideoCapture {
28 virtual void OnStarted(VideoCapture* capture) = 0;
31 virtual void OnStopped(VideoCapture* capture) = 0;
34 virtual void OnPaused(VideoCapture* capture) = 0;
37 virtual void OnError(VideoCapture* capture, int error_code) = 0;
41 virtual void OnRemoved(VideoCapture* capture) = 0;
45 VideoCapture* capture,
52 VideoCapture() {}
68 virtual ~VideoCapture() {}
71 DISALLOW_COPY_AND_ASSIGN(VideoCapture);
    [all...]
video_capture_proxy.h 18 // This is a helper class to proxy a VideoCapture::EventHandler. In the renderer
23 // Since the VideoCapture is living on the "Video Capture" thread, querying its
25 // track of the state every time it is called by the VideoCapture (on the VC
28 : public VideoCapture::EventHandler {
38 VideoCapture::EventHandler* proxied,
42 // Retrieves the state of the VideoCapture. Must be called on main thread.
45 // VideoCapture::EventHandler implementation, called on VC thread.
46 virtual void OnStarted(VideoCapture* capture) OVERRIDE;
47 virtual void OnStopped(VideoCapture* capture) OVERRIDE;
48 virtual void OnPaused(VideoCapture* capture) OVERRIDE
    [all...]
video_capture_proxy.cc 14 // Called on VC thread: extracts the state out of the VideoCapture, and
17 media::VideoCapture* capture) {
29 VideoCapture::EventHandler* proxied,
38 void VideoCaptureHandlerProxy::OnStarted(VideoCapture* capture) {
46 void VideoCaptureHandlerProxy::OnStopped(VideoCapture* capture) {
54 void VideoCaptureHandlerProxy::OnPaused(VideoCapture* capture) {
62 void VideoCaptureHandlerProxy::OnError(VideoCapture* capture, int error_code) {
71 void VideoCaptureHandlerProxy::OnRemoved(VideoCapture* capture) {
80 VideoCapture* capture,
92 VideoCapture* capture
    [all...]
  /external/chromium_org/content/renderer/media/
rtc_video_capture_delegate.h 23 public media::VideoCapture::EventHandler {
44 // media::VideoCapture::EventHandler implementation.
46 virtual void OnStarted(media::VideoCapture* capture) OVERRIDE;
47 virtual void OnStopped(media::VideoCapture* capture) OVERRIDE;
48 virtual void OnPaused(media::VideoCapture* capture) OVERRIDE;
49 virtual void OnError(media::VideoCapture* capture, int error_code) OVERRIDE;
50 virtual void OnRemoved(media::VideoCapture* capture) OVERRIDE;
52 media::VideoCapture* capture,
61 media::VideoCapture* capture,
63 void OnErrorOnCaptureThread(media::VideoCapture* capture)
    [all...]
rtc_video_capture_delegate.cc 53 void RtcVideoCaptureDelegate::OnStarted(media::VideoCapture* capture) {
57 void RtcVideoCaptureDelegate::OnStopped(media::VideoCapture* capture) {
60 void RtcVideoCaptureDelegate::OnPaused(media::VideoCapture* capture) {
63 void RtcVideoCaptureDelegate::OnError(media::VideoCapture* capture,
72 void RtcVideoCaptureDelegate::OnRemoved(media::VideoCapture* capture) {
86 media::VideoCapture* capture,
97 media::VideoCapture* capture,
111 media::VideoCapture* capture) {
119 media::VideoCapture* capture) {
video_capture_impl_manager.h 34 // A pointer to VideoCapture is returned to client so that client can
36 virtual media::VideoCapture* AddDevice(
38 media::VideoCapture::EventHandler* handler);
43 media::VideoCapture::EventHandler* handler);
61 media::VideoCapture::EventHandler* handler);
65 std::list<media::VideoCapture::EventHandler*> clients;
video_capture_impl.h 13 // The media::VideoCapture and VideoCaptureMessageFilter::Delegate are
50 : public media::VideoCapture, public VideoCaptureMessageFilter::Delegate {
52 // media::VideoCapture interface.
54 media::VideoCapture::EventHandler* handler,
56 virtual void StopCapture(media::VideoCapture::EventHandler* handler) OVERRIDE;
81 typedef std::map<media::VideoCapture::EventHandler*,
90 media::VideoCapture::EventHandler* handler,
92 void DoStopCaptureOnCaptureThread(media::VideoCapture::EventHandler* handler);
120 bool RemoveClient(media::VideoCapture::EventHandler* handler,
video_capture_impl_manager.cc 21 media::VideoCapture* VideoCaptureImplManager::AddDevice(
23 media::VideoCapture::EventHandler* handler) {
48 media::VideoCapture::EventHandler* handler) {
81 media::VideoCapture::EventHandler* handler)
video_capture_impl_unittest.cc 32 class MockVideoCaptureClient : public media::VideoCapture::EventHandler {
38 MOCK_METHOD1(OnStarted, void(media::VideoCapture* capture));
39 MOCK_METHOD1(OnStopped, void(media::VideoCapture* capture));
40 MOCK_METHOD1(OnPaused, void(media::VideoCapture* capture));
41 MOCK_METHOD2(OnError, void(media::VideoCapture* capture, int error_code));
42 MOCK_METHOD1(OnRemoved, void(media::VideoCapture* capture));
44 void(media::VideoCapture* capture,
47 void(media::VideoCapture* capture,
video_capture_impl.cc 47 : VideoCapture(),
78 media::VideoCapture::EventHandler* handler,
85 void VideoCaptureImpl::StopCapture(media::VideoCapture::EventHandler* handler) {
142 media::VideoCapture::EventHandler* handler,
187 media::VideoCapture::EventHandler* handler) {
342 media::VideoCapture::EventHandler* handler = it->first;
416 media::VideoCapture::EventHandler* handler,
  /external/chromium_org/content/renderer/pepper/
pepper_platform_video_capture.h 29 : public media::VideoCapture,
31 public media::VideoCapture::EventHandler {
42 // media::VideoCapture implementation.
44 media::VideoCapture::EventHandler* handler,
46 virtual void StopCapture(media::VideoCapture::EventHandler* handler) OVERRIDE;
50 // media::VideoCapture::EventHandler implementation
51 virtual void OnStarted(VideoCapture* capture) OVERRIDE;
52 virtual void OnStopped(VideoCapture* capture) OVERRIDE;
53 virtual void OnPaused(VideoCapture* capture) OVERRIDE;
54 virtual void OnError(VideoCapture* capture, int error_code) OVERRIDE
    [all...]
pepper_video_capture_host.h 25 public media::VideoCapture::EventHandler {
39 void OnInitialized(media::VideoCapture* capture, bool succeeded);
41 // media::VideoCapture::EventHandler
42 virtual void OnStarted(media::VideoCapture* capture) OVERRIDE;
43 virtual void OnStopped(media::VideoCapture* capture) OVERRIDE;
44 virtual void OnPaused(media::VideoCapture* capture) OVERRIDE;
45 virtual void OnError(media::VideoCapture* capture, int error_code) OVERRIDE;
46 virtual void OnRemoved(media::VideoCapture* capture) OVERRIDE;
48 media::VideoCapture* capture,
pepper_platform_video_capture.cc 48 media::VideoCapture::EventHandler* handler,
63 media::VideoCapture::EventHandler* handler) {
106 void PepperPlatformVideoCapture::OnStarted(VideoCapture* capture) {
111 void PepperPlatformVideoCapture::OnStopped(VideoCapture* capture) {
116 void PepperPlatformVideoCapture::OnPaused(VideoCapture* capture) {
121 void PepperPlatformVideoCapture::OnError(VideoCapture* capture,
127 void PepperPlatformVideoCapture::OnRemoved(VideoCapture* capture) {
135 VideoCapture* capture,
pepper_video_capture_host.cc 85 void PepperVideoCaptureHost::OnInitialized(media::VideoCapture* capture,
100 void PepperVideoCaptureHost::OnStarted(media::VideoCapture* capture) {
105 void PepperVideoCaptureHost::OnStopped(media::VideoCapture* capture) {
110 void PepperVideoCaptureHost::OnPaused(media::VideoCapture* capture) {
115 void PepperVideoCaptureHost::OnError(media::VideoCapture* capture,
131 void PepperVideoCaptureHost::OnRemoved(media::VideoCapture* capture) {
135 media::VideoCapture* capture,
  /packages/apps/Camera/tests/src/com/android/camera/stress/
CameraStressTestRunner.java 35 suite.addTestSuite(VideoCapture.class);
VideoCapture.java 38 * -e class com.android.camera.stress.VideoCapture \
43 public class VideoCapture extends ActivityInstrumentationTestCase2 <CameraActivity> {
53 public VideoCapture() {
  /packages/apps/Camera2/tests/src/com/android/camera/stress/
CameraStressTestRunner.java 35 suite.addTestSuite(VideoCapture.class);
VideoCapture.java 38 * -e class com.android.camera.stress.VideoCapture \
43 public class VideoCapture extends ActivityInstrumentationTestCase2 <CameraActivity> {
53 public VideoCapture() {
  /packages/apps/LegacyCamera/tests/src/com/android/camera/
CameraStressTestRunner.java 37 suite.addTestSuite(VideoCapture.class);
  /packages/apps/LegacyCamera/tests/src/com/android/camera/stress/
VideoCapture.java 39 * -e class com.android.camera.stress.VideoCapture \
44 public class VideoCapture extends ActivityInstrumentationTestCase2 <VideoCamera> {
45 private String TAG = "VideoCapture";
55 public VideoCapture() {
  /external/chromium_org/media/base/android/java/src/org/chromium/media/
VideoCapture.java 27 public class VideoCapture implements PreviewCallback, OnFrameAvailableListener {
81 private static final String TAG = "VideoCapture";
84 public static VideoCapture createVideoCapture(
86 return new VideoCapture(context, id, nativeVideoCaptureDeviceAndroid);
89 public VideoCapture(
  /external/chromium_org/media/
video_capture_android_jni_headers.target.darwin-arm.mk 18 # "{'inputs': ['../base/android/jni_generator/jni_generator.py', '../android_webview/build/jarjar-rules.txt'], 'process_outputs_as_sources': '1', 'extension': 'java', 'outputs': ['$(gyp_shared_intermediate_dir)/media/jni/%(INPUT_ROOT)s_jni.h'], 'rule_name': 'generate_jni_headers', 'rule_sources': ['base/android/java/src/org/chromium/media/VideoCapture.java'], 'action': ['../base/android/jni_generator/jni_generator.py', '--input_file', '$(RULE_SOURCES)', '--output_dir', '$(gyp_shared_intermediate_dir)/media/jni', '--optimize_generation', '0', '--jarjar', '../android_webview/build/jarjar-rules.txt', '--ptr_type', 'long'], 'message': 'Generating JNI bindings from $(RULE_SOURCES)'}":
23 $(gyp_shared_intermediate_dir)/media/jni/VideoCapture_jni.h: $(LOCAL_PATH)/media/base/android/java/src/org/chromium/media/VideoCapture.java $(LOCAL_PATH)/base/android/jni_generator/jni_generator.py $(LOCAL_PATH)/android_webview/build/jarjar-rules.txt $(GYP_TARGET_DEPENDENCIES)
24 mkdir -p $(gyp_shared_intermediate_dir)/media/jni; cd $(gyp_local_path)/media; ../base/android/jni_generator/jni_generator.py --input_file base/android/java/src/org/chromium/media/VideoCapture.java --output_dir "$(gyp_shared_intermediate_dir)/media/jni" --optimize_generation 0 --jarjar ../android_webview/build/jarjar-rules.txt --ptr_type long
video_capture_android_jni_headers.target.darwin-mips.mk 18 # "{'inputs': ['../base/android/jni_generator/jni_generator.py', '../android_webview/build/jarjar-rules.txt'], 'process_outputs_as_sources': '1', 'extension': 'java', 'outputs': ['$(gyp_shared_intermediate_dir)/media/jni/%(INPUT_ROOT)s_jni.h'], 'rule_name': 'generate_jni_headers', 'rule_sources': ['base/android/java/src/org/chromium/media/VideoCapture.java'], 'action': ['../base/android/jni_generator/jni_generator.py', '--input_file', '$(RULE_SOURCES)', '--output_dir', '$(gyp_shared_intermediate_dir)/media/jni', '--optimize_generation', '0', '--jarjar', '../android_webview/build/jarjar-rules.txt', '--ptr_type', 'long'], 'message': 'Generating JNI bindings from $(RULE_SOURCES)'}":
23 $(gyp_shared_intermediate_dir)/media/jni/VideoCapture_jni.h: $(LOCAL_PATH)/media/base/android/java/src/org/chromium/media/VideoCapture.java $(LOCAL_PATH)/base/android/jni_generator/jni_generator.py $(LOCAL_PATH)/android_webview/build/jarjar-rules.txt $(GYP_TARGET_DEPENDENCIES)
24 mkdir -p $(gyp_shared_intermediate_dir)/media/jni; cd $(gyp_local_path)/media; ../base/android/jni_generator/jni_generator.py --input_file base/android/java/src/org/chromium/media/VideoCapture.java --output_dir "$(gyp_shared_intermediate_dir)/media/jni" --optimize_generation 0 --jarjar ../android_webview/build/jarjar-rules.txt --ptr_type long
video_capture_android_jni_headers.target.darwin-x86.mk 18 # "{'inputs': ['../base/android/jni_generator/jni_generator.py', '../android_webview/build/jarjar-rules.txt'], 'process_outputs_as_sources': '1', 'extension': 'java', 'outputs': ['$(gyp_shared_intermediate_dir)/media/jni/%(INPUT_ROOT)s_jni.h'], 'rule_name': 'generate_jni_headers', 'rule_sources': ['base/android/java/src/org/chromium/media/VideoCapture.java'], 'action': ['../base/android/jni_generator/jni_generator.py', '--input_file', '$(RULE_SOURCES)', '--output_dir', '$(gyp_shared_intermediate_dir)/media/jni', '--optimize_generation', '0', '--jarjar', '../android_webview/build/jarjar-rules.txt', '--ptr_type', 'long'], 'message': 'Generating JNI bindings from $(RULE_SOURCES)'}":
23 $(gyp_shared_intermediate_dir)/media/jni/VideoCapture_jni.h: $(LOCAL_PATH)/media/base/android/java/src/org/chromium/media/VideoCapture.java $(LOCAL_PATH)/base/android/jni_generator/jni_generator.py $(LOCAL_PATH)/android_webview/build/jarjar-rules.txt $(GYP_TARGET_DEPENDENCIES)
24 mkdir -p $(gyp_shared_intermediate_dir)/media/jni; cd $(gyp_local_path)/media; ../base/android/jni_generator/jni_generator.py --input_file base/android/java/src/org/chromium/media/VideoCapture.java --output_dir "$(gyp_shared_intermediate_dir)/media/jni" --optimize_generation 0 --jarjar ../android_webview/build/jarjar-rules.txt --ptr_type long
video_capture_android_jni_headers.target.linux-arm.mk 18 # "{'inputs': ['../base/android/jni_generator/jni_generator.py', '../android_webview/build/jarjar-rules.txt'], 'process_outputs_as_sources': '1', 'extension': 'java', 'outputs': ['$(gyp_shared_intermediate_dir)/media/jni/%(INPUT_ROOT)s_jni.h'], 'rule_name': 'generate_jni_headers', 'rule_sources': ['base/android/java/src/org/chromium/media/VideoCapture.java'], 'action': ['../base/android/jni_generator/jni_generator.py', '--input_file', '$(RULE_SOURCES)', '--output_dir', '$(gyp_shared_intermediate_dir)/media/jni', '--optimize_generation', '0', '--jarjar', '../android_webview/build/jarjar-rules.txt', '--ptr_type', 'long'], 'message': 'Generating JNI bindings from $(RULE_SOURCES)'}":
23 $(gyp_shared_intermediate_dir)/media/jni/VideoCapture_jni.h: $(LOCAL_PATH)/media/base/android/java/src/org/chromium/media/VideoCapture.java $(LOCAL_PATH)/base/android/jni_generator/jni_generator.py $(LOCAL_PATH)/android_webview/build/jarjar-rules.txt $(GYP_TARGET_DEPENDENCIES)
24 mkdir -p $(gyp_shared_intermediate_dir)/media/jni; cd $(gyp_local_path)/media; ../base/android/jni_generator/jni_generator.py --input_file base/android/java/src/org/chromium/media/VideoCapture.java --output_dir "$(gyp_shared_intermediate_dir)/media/jni" --optimize_generation 0 --jarjar ../android_webview/build/jarjar-rules.txt --ptr_type long

Completed in 349 milliseconds

1 2