diff options
author | James Dong <jdong@google.com> | 2011-10-28 13:40:32 -0700 |
---|---|---|
committer | James Dong <jdong@google.com> | 2011-10-28 13:42:06 -0700 |
commit | 35efc56608b03d39e4692afbfa1b45ae38e558d2 (patch) | |
tree | 87794d82ecb2d4175a8fc6ef86e2f0401f4748fa | |
parent | a279f9621ab8313bd48002ed6c0992ddd3ce297d (diff) | |
download | device_samsung_tuna-35efc56608b03d39e4692afbfa1b45ae38e558d2.zip device_samsung_tuna-35efc56608b03d39e4692afbfa1b45ae38e558d2.tar.gz device_samsung_tuna-35efc56608b03d39e4692afbfa1b45ae38e558d2.tar.bz2 |
Limit output bitrate from 1080P video recording to 12Mbps
Change-Id: I536306ee85eeaa55d3d7cdfa9754bb8141672abd
related-to-bug: 5508276
-rwxr-xr-x | media_profiles.xml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/media_profiles.xml b/media_profiles.xml index 28cb2c2..4a6eb46 100755 --- a/media_profiles.xml +++ b/media_profiles.xml @@ -138,7 +138,7 @@ <EncoderProfile quality="1080p" fileFormat="mp4" duration="30"> <Video codec="h264" - bitRate="17000000" + bitRate="12000000" width="1920" height="1080" frameRate="30" /> @@ -202,7 +202,7 @@ <EncoderProfile quality="timelapse1080p" fileFormat="mp4" duration="30"> <Video codec="h264" - bitRate="17000000" + bitRate="12000000" width="1920" height="1080" frameRate="30" /> @@ -338,7 +338,7 @@ or query the capabilities of the codec at all if it is disabled --> <VideoEncoderCap name="h264" enabled="true" - minBitRate="64000" maxBitRate="17000000" + minBitRate="64000" maxBitRate="12000000" minFrameWidth="176" maxFrameWidth="1920" minFrameHeight="144" maxFrameHeight="1080" minFrameRate="15" maxFrameRate="30" /> |