Skip to content

RFC: Options to maximize field of view for video calls #2052

Open
@ASerbinski

Description

There are three aspects of camera configuration that result in cropped video output and a substantially reduced field of view;

  1. Use of 16:9 aspect ratio instead of the sensor native 4:3
    videoCapturer.startCapture(1280, 720, 30);
  2. Use of Electronic Image Stabilization (EIS)
  3. Inability to control zoom ratio results in fixed ratio of 1:1.

The aspect ratio will affect devices universally, since as far as I can tell, all camera sensors seem to have a 4:3 native aspect ratio. The other two will apply on a sensor by sensor basis. Some phones have a mixture of available zoom ratios, and support for EIS or OIS (where OIS is available, EIS is disabled).

Naturally, there will be tradeoffs for each of the three causes of cropping;

  1. User may have a preference for a 16:9 ratio.
  2. Holding the device in user's hand will result in a jittery video without stabilization.
  3. Changing the zoom ratio could cause the HAL to select a different sensor with different characteristics, for example, the main camera on a Pixel 6 [/Pro] has OIS, but reducing the zoom level to lower than 1:1 will cause it to switch to the wide angle lens, which does not have OIS.

Consequently, each of these configuration changes should be user-controlled.

Access to the camera on this software is through webrtc, which unfortunately, does not provide means of user control for EIS or zoom ratio, however, others have coerced it into allowing settings; https://stackoverflow.com/questions/48598752/android-how-to-turn-on-flashlight-using-webrtc-android-io-pristine-libjingle1

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions