From e64d9a236e4704abf53d3b7eea2eb066f23cf402 Mon Sep 17 00:00:00 2001 From: James Dong Date: Wed, 31 Mar 2010 13:56:29 -0700 Subject: Public API changes for CameraProfile and CamcorderProfile classes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1. CamcorderProfile: “@see” links are broken; Remove m prefix from fields; remove “final” 2. CamcorderProfile.Quality: use an int rather than an enum 3. Add API on MediaRecorder to pass in a CamcorderProfile 4. CameraProfile.getImageEncodingQualityLevels @hide or make it consistent with CamcorderProfile 5. Remove a convenient method and instead let the (mms) app do that task bug - 2553862 Change-Id: I759215c7892f772aeddf3651d17038489c6fbc50 --- include/media/MediaProfiles.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include') diff --git a/include/media/MediaProfiles.h b/include/media/MediaProfiles.h index eb96d20..a4eea2a 100644 --- a/include/media/MediaProfiles.h +++ b/include/media/MediaProfiles.h @@ -24,8 +24,8 @@ namespace android { enum camcorder_quality { - CAMCORDER_QUALITY_HIGH = 0, - CAMCORDER_QUALITY_LOW = 1 + CAMCORDER_QUALITY_LOW = 0, + CAMCORDER_QUALITY_HIGH = 1 }; enum video_decoder { -- cgit v1.1