diff options
| author | Rashed Abdel-Tawab <rashed@linux.com> | 2017-03-06 02:06:01 -0500 |
|---|---|---|
| committer | Rashed Abdel-Tawab <rashed@linux.com> | 2017-03-06 02:06:01 -0500 |
| commit | e23314b1e3ffa15d9c43538de67545f54561d81b (patch) | |
| tree | 591962bc7622139c58e19513b798d2bd047d5048 | |
| parent | 1b7f911658b1ea2f436e42b7992fdfbf3a912ee4 (diff) | |
msm8996: Fix slow motion recording in Google Camera
Change-Id: Ia6c15deced91e8931ff00519af9f644a11b86151
| -rw-r--r-- | configs/media_profiles.xml | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/configs/media_profiles.xml b/configs/media_profiles.xml index 5b24e94..f0f5dbf 100644 --- a/configs/media_profiles.xml +++ b/configs/media_profiles.xml @@ -445,6 +445,60 @@ channels="2" /> </EncoderProfile> + <!-- CAMCORDER_QUALITY_HIGH_SPEED_LOW/720P : 720p@240fps; 42.0 Mbps --> + <EncoderProfile quality="highspeedlow" fileFormat="mp4" duration="30"> + <Video codec="h264" + bitRate="42000000" + width="1280" + height="720" + frameRate="240" /> + <!-- audio setting is ignored --> + <Audio codec="aac" + bitRate="96000" + sampleRate="48000" + channels="1" /> + </EncoderProfile> + + <!-- CAMCORDER_QUALITY_HIGH_SPEED_HIGH/1080P : 1080p@120fps; 42.0 Mbps --> + <EncoderProfile quality="highspeedhigh" fileFormat="mp4" duration="30"> + <Video codec="h264" + bitRate="42000000" + width="1920" + height="1080" + frameRate="120" /> + <!-- audio setting is ignored --> + <Audio codec="aac" + bitRate="96000" + sampleRate="48000" + channels="1" /> + </EncoderProfile> + + <EncoderProfile quality="highspeed720p" fileFormat="mp4" duration="30"> + <Video codec="h264" + bitRate="42000000" + width="1280" + height="720" + frameRate="240" /> + <!-- audio setting is ignored --> + <Audio codec="aac" + bitRate="96000" + sampleRate="48000" + channels="1" /> + </EncoderProfile> + + <EncoderProfile quality="highspeed1080p" fileFormat="mp4" duration="30"> + <Video codec="h264" + bitRate="42000000" + width="1920" + height="1080" + frameRate="120" /> + <!-- audio setting is ignored --> + <Audio codec="aac" + bitRate="96000" + sampleRate="48000" + channels="1" /> + </EncoderProfile> + <ImageEncoding quality="95" /> <ImageEncoding quality="80" /> <ImageEncoding quality="70" /> |
