blob: 54c8addf598ad47d8e84ff77ad2987c20a488132 [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 &&
Chong Zhange996c412014-01-02 12:12:01 -080091 audioEncoder != MediaRecorder.AudioEncoder.HE_AAC &&
92 audioEncoder != MediaRecorder.AudioEncoder.AAC_ELD) {
James Dong1b7babd2010-02-16 14:38:23 -080093 throw new IllegalArgumentException("Unsupported audio encodeer " + audioEncoder);
94 }
James Dong620a42402010-07-07 14:37:48 -070095 return audioEncoderMap.get(audioEncoder);
James Dong1b7babd2010-02-16 14:38:23 -080096 }
97
James Dongb05a6002011-09-07 19:31:24 -070098 public static int getMinFrameRateForCodec(int codec) {
99 return getMinOrMaxFrameRateForCodec(codec, false);
100 }
101
102 public static int getMaxFrameRateForCodec(int codec) {
103 return getMinOrMaxFrameRateForCodec(codec, true);
104 }
105
106 private static int getMinOrMaxFrameRateForCodec(int codec, boolean max) {
107 for (VideoEncoderCap cap: videoEncoders) {
108 if (cap.mCodec == codec) {
109 if (max) return cap.mMaxFrameRate;
110 else return cap.mMinFrameRate;
111 }
112 }
113 // Should never reach here
114 throw new IllegalArgumentException("Unsupported video codec " + codec);
115 }
116
James Dong1b7babd2010-02-16 14:38:23 -0800117 private MediaProfileReader() {} // Don't call me
118
James Dong620a42402010-07-07 14:37:48 -0700119 private static void initVideoEncoderMap() {
James Dong1b7babd2010-02-16 14:38:23 -0800120 // video encoders
James Dong620a42402010-07-07 14:37:48 -0700121 videoEncoderMap.put(MediaRecorder.VideoEncoder.H263, "h263");
122 videoEncoderMap.put(MediaRecorder.VideoEncoder.H264, "h264");
123 videoEncoderMap.put(MediaRecorder.VideoEncoder.MPEG_4_SP, "m4v");
124 }
James Dong1b7babd2010-02-16 14:38:23 -0800125
James Dong620a42402010-07-07 14:37:48 -0700126 private static void initAudioEncoderMap() {
James Dong1b7babd2010-02-16 14:38:23 -0800127 // audio encoders
James Dong620a42402010-07-07 14:37:48 -0700128 audioEncoderMap.put(MediaRecorder.AudioEncoder.AMR_NB, "amrnb");
129 audioEncoderMap.put(MediaRecorder.AudioEncoder.AMR_WB, "amrwb");
130 audioEncoderMap.put(MediaRecorder.AudioEncoder.AAC, "aac");
Dave Burkeec3f31f2012-04-28 22:02:13 -0700131 audioEncoderMap.put(MediaRecorder.AudioEncoder.HE_AAC, "heaac");
Chong Zhange996c412014-01-02 12:12:01 -0800132 audioEncoderMap.put(MediaRecorder.AudioEncoder.AAC_ELD, "aaceld");
Yu Shan Emily Lau16193672009-09-14 16:23:12 -0700133 }
134}