| OLD | NEW |
| 1 /* | 1 /* |
| 2 * libjingle | 2 * libjingle |
| 3 * Copyright 2015 Google Inc. | 3 * Copyright 2015 Google Inc. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are met: | 6 * modification, are permitted provided that the following conditions are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright notice, | 8 * 1. Redistributions of source code must retain the above copyright notice, |
| 9 * this list of conditions and the following disclaimer. | 9 * this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright notice, | 10 * 2. Redistributions in binary form must reproduce the above copyright notice, |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 void Start(int width, int height, int framerate, | 53 void Start(int width, int height, int framerate, |
| 54 webrtc::AndroidVideoCapturer* capturer) override; | 54 webrtc::AndroidVideoCapturer* capturer) override; |
| 55 void Stop() override; | 55 void Stop() override; |
| 56 | 56 |
| 57 std::string GetSupportedFormats() override; | 57 std::string GetSupportedFormats() override; |
| 58 | 58 |
| 59 // Called from VideoCapturerAndroid::NativeObserver on a Java thread. | 59 // Called from VideoCapturerAndroid::NativeObserver on a Java thread. |
| 60 void OnCapturerStarted(bool success); | 60 void OnCapturerStarted(bool success); |
| 61 void OnMemoryBufferFrame(void* video_frame, int length, int width, | 61 void OnMemoryBufferFrame(void* video_frame, int length, int width, |
| 62 int height, int rotation, int64_t timestamp_ns); | 62 int height, int rotation, int64_t timestamp_ns); |
| 63 void OnTextureFrame(int width, int height, int64_t timestamp_ns, | 63 void OnTextureFrame(int width, int height, int rotation, int64_t timestamp_ns, |
| 64 const NativeHandleImpl& handle); | 64 const NativeHandleImpl& handle); |
| 65 void OnOutputFormatRequest(int width, int height, int fps); | 65 void OnOutputFormatRequest(int width, int height, int fps); |
| 66 | 66 |
| 67 protected: | 67 protected: |
| 68 ~AndroidVideoCapturerJni(); | 68 ~AndroidVideoCapturerJni(); |
| 69 | 69 |
| 70 private: | 70 private: |
| 71 void ReturnBuffer(int64_t time_stamp); | 71 void ReturnBuffer(int64_t time_stamp); |
| 72 JNIEnv* jni(); | 72 JNIEnv* jni(); |
| 73 | 73 |
| (...skipping 27 matching lines...) Expand all Loading... |
| 101 rtc::scoped_ptr<rtc::GuardedAsyncInvoker> invoker_ GUARDED_BY(capturer_lock_); | 101 rtc::scoped_ptr<rtc::GuardedAsyncInvoker> invoker_ GUARDED_BY(capturer_lock_); |
| 102 | 102 |
| 103 static jobject application_context_; | 103 static jobject application_context_; |
| 104 | 104 |
| 105 RTC_DISALLOW_COPY_AND_ASSIGN(AndroidVideoCapturerJni); | 105 RTC_DISALLOW_COPY_AND_ASSIGN(AndroidVideoCapturerJni); |
| 106 }; | 106 }; |
| 107 | 107 |
| 108 } // namespace webrtc_jni | 108 } // namespace webrtc_jni |
| 109 | 109 |
| 110 #endif // TALK_APP_WEBRTC_JAVA_JNI_ANDROIDVIDEOCAPTURER_JNI_H_ | 110 #endif // TALK_APP_WEBRTC_JAVA_JNI_ANDROIDVIDEOCAPTURER_JNI_H_ |
| OLD | NEW |