Changes between Version 54 and Version 55 of Getting-Started/Android


Ignore:
Timestamp:
Jul 3, 2015 10:42:02 AM (9 years ago)
Author:
ming
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Getting-Started/Android

    v54 v55  
    113113Please check [wiki:Video_Users_Guide Video User's Guide]. 
    114114 
     115=== Video capture orientation support === 
     116 
     117To send video in the proper orientation (i.e. head always up regardless of the device orientation), application needs to do the following: 
     118 
     1191. Setup the application to get orientation change notification (by adding {{{android:configChanges="orientation|keyboardHidden|screenSize"}}} in the application manifest file and override the callback {{{onConfigurationChanged()}}}). 
     1202. Inside the callback, call PJSUA2 API {{{VidDevManager.setCaptureOrient()}}} to set the video device to the correct orientation. 
     121 
     122For sample usage, please refer to pjsua2 sample app. Ticket #1861 explains this feature in detail. 
    115123 
    116124== Setting up the target device ==