summaryrefslogtreecommitdiff
path: root/examples
AgeCommit message (Collapse)Author
2014-10-31Update Android projects to API level 21.kjellander@webrtc.org
The update in https://webrtc-codereview.appspot.com/23309004 was not enough, so this updates to 21 instead. This is required in order to roll chromium_revision to keep up with Chrome, as third_party/android_tools have now dropped support for API level 20. Commands used: third_party/android_tools/sdk/tools/android update project --name OpenSlDemo --target android-21 --path webrtc/examples/android/opensl_loopback third_party/android_tools/sdk/tools/android update project --name WebRTCDemo --target android-21 --path webrtc/examples/android/media_demo/ third_party/android_tools/sdk/tools/android update project --name AppRTCDemo --target android-21 --path talk/examples/android/ Then I restored the changes of the ANDROID_SDK_ROOT -> ANDROID_HOME since it seems the Chromium build toolchain doesn't set it properly when build/android/envsetup.sh is sourced. BUG= R=glaznev@webrtc.org, henrike@webrtc.org Review URL: https://webrtc-codereview.appspot.com/25029004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@7587 4adac7df-926f-26a2-2b94-8c16560cd09d
2014-10-31Update Android projects to API level 20.kjellander@webrtc.org
This is required in order to roll chromium_revision to keep up with Chrome, as third_party/android_tools have now dropped support for API level 19. Commands used: third_party/android_tools/sdk/tools/android update project --name OpenSlDemo --target android-20 --path webrtc/examples/android/opensl_loopback third_party/android_tools/sdk/tools/android update project --name WebRTCDemo --target android-20 --path webrtc/examples/android/media_demo/ third_party/android_tools/sdk/tools/android update project --name AppRTCDemo --target android-20 --path talk/examples/android/ Then I restored the changes of the ANDROID_SDK_ROOT -> ANDROID_HOME since it seems the Chromium build toolchain doesn't set it properly when build/android/envsetup.sh is sourced. BUG= R=glaznev@webrtc.org, henrike@webrtc.org Review URL: https://webrtc-codereview.appspot.com/23309004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@7582 4adac7df-926f-26a2-2b94-8c16560cd09d
2014-09-17Split video engine android initialization into each internal module ↵andresp@webrtc.org
initialization. This is to later on allow targets to pick at link time if to include the external or internal implementation. In order to do that the video_engine cannot compile different based on which option is picked later on. BUG=3768,3770 R=glaznev@webrtc.org, stefan@webrtc.org TBR=henrike@webrtc.org, mflodman@webrtc.org Review URL: https://webrtc-codereview.appspot.com/25529004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@7208 4adac7df-926f-26a2-2b94-8c16560cd09d
2014-09-10Fix compile error on JDK 1.7.kjellander@webrtc.org
JDK 1.7 gives an error like this: warning: [static] static method should be qualified by type name R=pbos@webrtc.org TBR=henrike@webrtc.org BUG= Review URL: https://webrtc-codereview.appspot.com/29399004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@7133 4adac7df-926f-26a2-2b94-8c16560cd09d
2014-08-26Remove former team members from OWNERS and WATCHLISTSkjellander@webrtc.org
Remove the following (CCed) former team members from all OWNERS files and the WATCHLISTS file: * fischman@ * leozwang@ * mikhal@ * pwestin@ * wu@ BUG= R=henrike@webrtc.org, niklas.enbom@webrtc.org Review URL: https://webrtc-codereview.appspot.com/22509004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@6973 4adac7df-926f-26a2-2b94-8c16560cd09d
2014-07-03WebRTCDemo: set local SSRC for loopback test, otherwise receiver would reset ↵braveyao@webrtc.org
it due to ssrc clash, which would cause delayed remote rendering. (Including another fix here, https://review.webrtc.org/16779004/, to make the test run) BUG=3500 TEST=Manual Test R=glaznev@webrtc.org Review URL: https://webrtc-codereview.appspot.com/13819004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@6587 4adac7df-926f-26a2-2b94-8c16560cd09d
2014-06-06AppRTCDemo(android): support app (UI) & capture rotation.fischman@webrtc.org
Now app UI rotates as the device orientation changes, and the captured stream tries to maintain real-world-up, matching Chrome/Android and Hangouts/Android behavior. BUG=2432 R=glaznev@webrtc.org, henrike@webrtc.org, wu@webrtc.org Review URL: https://webrtc-codereview.appspot.com/15689005 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@6354 4adac7df-926f-26a2-2b94-8c16560cd09d
2014-05-21WebRTCDemo: clean the error message due to API clean up and add ability to ↵braveyao@webrtc.org
route the audio through all three outputs, headset/earpiece/loudspeaker BUG=3366 TEST=Manual Test R=fischman@webrtc.org Review URL: https://webrtc-codereview.appspot.com/17559004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@6207 4adac7df-926f-26a2-2b94-8c16560cd09d
2014-05-15WebRTCDemo: couldn't run a second time. The reason is voe could ↵braveyao@webrtc.org
register/unregister for each run, but vie would expect initialization only once per process. This cl is to teach videocapture android how to deinitialize and allow it to be re-initializable. BUG=3284 TEST=ManualTest R=fischman@webrtc.org Review URL: https://webrtc-codereview.appspot.com/15429004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@6167 4adac7df-926f-26a2-2b94-8c16560cd09d
2014-05-05WebRTCDemo: correct set trace filter operation.braveyao@webrtc.org
BUG=3285 TEST=Manul Test R=fischman@webrtc.org Review URL: https://webrtc-codereview.appspot.com/17389004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@6051 4adac7df-926f-26a2-2b94-8c16560cd09d
2014-04-25Replace scoped_array<T> with scoped_ptr<T[]>.andrew@webrtc.org
scoped_array is deprecated. This was done using a Chromium clang tool: http://src.chromium.org/viewvc/chrome/trunk/src/tools/clang/rewrite_scoped_ar... except for the few not-built-on-Linux files which were updated manually. TESTED=trybots BUG=2515 R=niklas.enbom@webrtc.org Review URL: https://webrtc-codereview.appspot.com/12429004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@5985 4adac7df-926f-26a2-2b94-8c16560cd09d
2014-04-08VideoCaptureAndroid: stop referencing ViERendererfischman@webrtc.org
To facilitate building video_capture's java code without video_render's java code this reorganizes the local-preview hack to be driven by MediaEngine. This is the "first step" in the linked bug. BUG=3175 R=henrike@webrtc.org Review URL: https://webrtc-codereview.appspot.com/11349004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@5865 4adac7df-926f-26a2-2b94-8c16560cd09d
2014-01-24Android, WebRTCDemo: fixes crash issue when pressing switch camera button on ↵henrike@webrtc.org
devices with only one camera. BUG=2807(second issue) R=fischman@webrtc.org Review URL: https://webrtc-codereview.appspot.com/7579004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@5429 4adac7df-926f-26a2-2b94-8c16560cd09d
2014-01-22Android, fixes crash on devices with only front cameras.henrike@webrtc.org
BUG=2807 R=fischman@webrtc.org Review URL: https://webrtc-codereview.appspot.com/7429004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@5415 4adac7df-926f-26a2-2b94-8c16560cd09d
2014-01-17Android, OpenSlDemo: moved to webrtc/examples/android/opensl_loopbackhenrike@webrtc.org
BUG=N/A R=andrew@webrtc.org, fischman@webrtc.org Review URL: https://webrtc-codereview.appspot.com/7269004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@5400 4adac7df-926f-26a2-2b94-8c16560cd09d
2014-01-16Android, WebRTCDemo: fix issue where changing remote IP was not working ↵henrike@webrtc.org
properly. BUG=2783 R=fischman@webrtc.org Review URL: https://webrtc-codereview.appspot.com/7209004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@5396 4adac7df-926f-26a2-2b94-8c16560cd09d
2014-01-13WebRTCDemo: fix out-of-bounds array read.fischman@webrtc.org
Also removed the WebRtcCamera class, which has become an empty wrapper around CameraInfo in the post-rewrite world. First pointed out by Jeremy Mao <yujie.mao@webrtc.org> in http://review.webrtc.org/6869004/ R=henrike@webrtc.org Review URL: https://webrtc-codereview.appspot.com/7079004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@5377 4adac7df-926f-26a2-2b94-8c16560cd09d
2013-12-12Complete rewrite of demo application.henrike@webrtc.org
BUG=2122 R=andrew@webrtc.org, fischman@webrtc.org Review URL: https://webrtc-codereview.appspot.com/3669004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@5273 4adac7df-926f-26a2-2b94-8c16560cd09d