blob: abe8b8c45c39a2b2e3b2883c251b24c1b62bc9d6 [file] [log] [blame]
Kenny Root15a4d2f2010-03-11 18:20:12 -08001/*
2 * Copyright (C) 2009 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Yu Shan Emily Lau16193672009-09-14 16:23:12 -070017package com.android.mediaframeworktest;
18
19import android.media.MediaRecorder;
James Dong1b7babd2010-02-16 14:38:23 -080020import android.media.EncoderCapabilities;
21import android.media.EncoderCapabilities.VideoEncoderCap;
22import android.media.EncoderCapabilities.AudioEncoderCap;
23import android.media.DecoderCapabilities;
24import android.media.DecoderCapabilities.VideoDecoder;
25import android.media.DecoderCapabilities.AudioDecoder;
26
Yu Shan Emily Lau16193672009-09-14 16:23:12 -070027import android.os.SystemProperties;
James Dong1b7babd2010-02-16 14:38:23 -080028import java.util.List;
Yu Shan Emily Lau16193672009-09-14 16:23:12 -070029import java.util.HashMap;
30
James Dong1b7babd2010-02-16 14:38:23 -080031public class MediaProfileReader
32{
33 private static final List<VideoDecoder> videoDecoders = DecoderCapabilities.getVideoDecoders();
34 private static final List<AudioDecoder> audioDecoders = DecoderCapabilities.getAudioDecoders();
35 private static final List<VideoEncoderCap> videoEncoders = EncoderCapabilities.getVideoEncoders();
36 private static final List<AudioEncoderCap> audioEncoders = EncoderCapabilities.getAudioEncoders();
James Dong620a42402010-07-07 14:37:48 -070037 private static final HashMap<Integer, String> videoEncoderMap = new HashMap<Integer, String>();
38 private static final HashMap<Integer, String> audioEncoderMap = new HashMap<Integer, String>();
Yu Shan Emily Lau16193672009-09-14 16:23:12 -070039
James Dong1b7babd2010-02-16 14:38:23 -080040 static {
James Dong620a42402010-07-07 14:37:48 -070041 initAudioEncoderMap();
42 initVideoEncoderMap();
James Dong1b7babd2010-02-16 14:38:23 -080043 };
Yu Shan Emily Lau16193672009-09-14 16:23:12 -070044
James Dong1b7babd2010-02-16 14:38:23 -080045 public static List<VideoEncoderCap> getVideoEncoders() {
46 return videoEncoders;
Yu Shan Emily Lau16193672009-09-14 16:23:12 -070047 }
48
James Dong1b7babd2010-02-16 14:38:23 -080049 public static List<AudioEncoderCap> getAudioEncoders() {
50 return audioEncoders;
Yu Shan Emily Lau16193672009-09-14 16:23:12 -070051 }
52
53 public static String getDeviceType() {
54 // push all the property into one big table
55 String s;
56 s = SystemProperties.get("ro.product.name");
57 return s;
58 }
59
Yu Shan Emily Laudc1af5b2009-09-21 21:13:36 -070060 public static boolean getWMAEnable() {
James Dong1b7babd2010-02-16 14:38:23 -080061 for (AudioDecoder decoder: audioDecoders) {
62 if (decoder == AudioDecoder.AUDIO_DECODER_WMA) {
63 return true;
64 }
Yu Shan Emily Laudc1af5b2009-09-21 21:13:36 -070065 }
James Dong1b7babd2010-02-16 14:38:23 -080066 return false;
Yu Shan Emily Laudc1af5b2009-09-21 21:13:36 -070067 }
68
69 public static boolean getWMVEnable(){
James Dong1b7babd2010-02-16 14:38:23 -080070 for (VideoDecoder decoder: videoDecoders) {
71 if (decoder == VideoDecoder.VIDEO_DECODER_WMV) {
72 return true;
Yu Shan Emily Lau34831c92009-09-25 11:18:40 -070073 }
Yu Shan Emily Lau16193672009-09-14 16:23:12 -070074 }
James Dong1b7babd2010-02-16 14:38:23 -080075 return false;
Yu Shan Emily Lau16193672009-09-14 16:23:12 -070076 }
77
James Dong1b7babd2010-02-16 14:38:23 -080078 public static String getVideoCodecName(int videoEncoder) {
79 if (videoEncoder != MediaRecorder.VideoEncoder.H263 &&
80 videoEncoder != MediaRecorder.VideoEncoder.H264 &&
81 videoEncoder != MediaRecorder.VideoEncoder.MPEG_4_SP) {
82 throw new IllegalArgumentException("Unsupported video encoder " + videoEncoder);
Yu Shan Emily Lau16193672009-09-14 16:23:12 -070083 }
James Dong620a42402010-07-07 14:37:48 -070084 return videoEncoderMap.get(videoEncoder);
Yu Shan Emily Lau16193672009-09-14 16:23:12 -070085 }
86
James Dong1b7babd2010-02-16 14:38:23 -080087 public static String getAudioCodecName(int audioEncoder) {
88 if (audioEncoder != MediaRecorder.AudioEncoder.AMR_NB &&
89 audioEncoder != MediaRecorder.AudioEncoder.AMR_WB &&
90 audioEncoder != MediaRecorder.AudioEncoder.AAC &&
Dave Burkeec3f31f2012-04-28 22:02:13 -070091 audioEncoder != MediaRecorder.AudioEncoder.HE_AAC) {
James Dong1b7babd2010-02-16 14:38:23 -080092 throw new IllegalArgumentException("Unsupported audio encodeer " + audioEncoder);
93 }
James Dong620a42402010-07-07 14:37:48 -070094 return audioEncoderMap.get(audioEncoder);
James Dong1b7babd2010-02-16 14:38:23 -080095 }
96
James Dongb05a6002011-09-07 19:31:24 -070097 public static int getMinFrameRateForCodec(int codec) {
98 return getMinOrMaxFrameRateForCodec(codec, false);
99 }
100
101 public static int getMaxFrameRateForCodec(int codec) {
102 return getMinOrMaxFrameRateForCodec(codec, true);
103 }
104
105 private static int getMinOrMaxFrameRateForCodec(int codec, boolean max) {
106 for (VideoEncoderCap cap: videoEncoders) {
107 if (cap.mCodec == codec) {
108 if (max) return cap.mMaxFrameRate;
109 else return cap.mMinFrameRate;
110 }
111 }
112 // Should never reach here
113 throw new IllegalArgumentException("Unsupported video codec " + codec);
114 }
115
James Dong1b7babd2010-02-16 14:38:23 -0800116 private MediaProfileReader() {} // Don't call me
117
James Dong620a42402010-07-07 14:37:48 -0700118 private static void initVideoEncoderMap() {
James Dong1b7babd2010-02-16 14:38:23 -0800119 // video encoders
James Dong620a42402010-07-07 14:37:48 -0700120 videoEncoderMap.put(MediaRecorder.VideoEncoder.H263, "h263");
121 videoEncoderMap.put(MediaRecorder.VideoEncoder.H264, "h264");
122 videoEncoderMap.put(MediaRecorder.VideoEncoder.MPEG_4_SP, "m4v");
123 }
James Dong1b7babd2010-02-16 14:38:23 -0800124
James Dong620a42402010-07-07 14:37:48 -0700125 private static void initAudioEncoderMap() {
James Dong1b7babd2010-02-16 14:38:23 -0800126 // audio encoders
James Dong620a42402010-07-07 14:37:48 -0700127 audioEncoderMap.put(MediaRecorder.AudioEncoder.AMR_NB, "amrnb");
128 audioEncoderMap.put(MediaRecorder.AudioEncoder.AMR_WB, "amrwb");
129 audioEncoderMap.put(MediaRecorder.AudioEncoder.AAC, "aac");
Dave Burkeec3f31f2012-04-28 22:02:13 -0700130 audioEncoderMap.put(MediaRecorder.AudioEncoder.HE_AAC, "heaac");
Yu Shan Emily Lau16193672009-09-14 16:23:12 -0700131 }
132}