-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathVideoQuality.java
More file actions
147 lines (129 loc) · 4.76 KB
/
VideoQuality.java
File metadata and controls
147 lines (129 loc) · 4.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
/*
* Copyright (C) 2011-2014 GUIGUI Simon, fyhertz@gmail.com
*
* This file is part of libstreaming (https://github.com/fyhertz/libstreaming)
*
* Spydroid is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This source code is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this source code; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package net.majorkernelpanic.streaming.video;
import java.util.Iterator;
import java.util.List;
import android.hardware.Camera;
import android.hardware.Camera.Size;
import android.util.Log;
/**
* A class that represents the quality of a video stream.
* It contains the resolution, the framerate (in fps) and the bitrate (in bps) of the stream.
*/
public class VideoQuality {
public final static String TAG = "VideoQuality";
/** Default video stream quality. */
public final static VideoQuality DEFAULT_VIDEO_QUALITY = new VideoQuality(176,144,20,500000);
/** Represents a quality for a video stream. */
public VideoQuality() {}
/**
* Represents a quality for a video stream.
* @param resX The horizontal resolution
* @param resY The vertical resolution
*/
public VideoQuality(int resX, int resY) {
this.resX = resX;
this.resY = resY;
}
/**
* Represents a quality for a video stream.
* @param resX The horizontal resolution
* @param resY The vertical resolution
* @param framerate The framerate in frame per seconds
* @param bitrate The bitrate in bit per seconds
*/
public VideoQuality(int resX, int resY, int framerate, int bitrate) {
this.framerate = framerate;
this.bitrate = bitrate;
this.resX = resX;
this.resY = resY;
}
public int framerate = 0;
public int bitrate = 0;
public int resX = 0;
public int resY = 0;
public boolean equals(VideoQuality quality) {
if (quality==null) return false;
return (quality.resX == this.resX &
quality.resY == this.resY &
quality.framerate == this.framerate &
quality.bitrate == this.bitrate);
}
public VideoQuality clone() {
return new VideoQuality(resX,resY,framerate,bitrate);
}
public static VideoQuality parseQuality(String str) {
VideoQuality quality = DEFAULT_VIDEO_QUALITY.clone();
if (str != null) {
String[] config = str.split("-");
try {
quality.bitrate = Integer.parseInt(config[0])*1000; // conversion to bit/s
quality.framerate = Integer.parseInt(config[1]);
quality.resX = Integer.parseInt(config[2]);
quality.resY = Integer.parseInt(config[3]);
}
catch (IndexOutOfBoundsException ignore) {}
}
return quality;
}
public String toString() {
return resX+"x"+resY+" px, "+framerate+" fps, "+bitrate/1000+" kbps";
}
/**
* Checks if the requested resolution is supported by the camera.
* If not, it modifies it by supported parameters.
**/
public static VideoQuality determineClosestSupportedResolution(Camera.Parameters parameters, VideoQuality quality) {
VideoQuality v = quality.clone();
int minDist = Integer.MAX_VALUE;
String supportedSizesStr = "Supported resolutions: ";
List<Size> supportedSizes = parameters.getSupportedPreviewSizes();
for (Iterator<Size> it = supportedSizes.iterator(); it.hasNext();) {
Size size = it.next();
supportedSizesStr += size.width+"x"+size.height+(it.hasNext()?", ":"");
int dist = Math.abs(quality.resX - size.width);
if (dist<minDist) {
minDist = dist;
v.resX = size.width;
v.resY = size.height;
}
}
Log.v(TAG, supportedSizesStr);
if (quality.resX != v.resX || quality.resY != v.resY) {
Log.v(TAG,"Resolution modified: "+quality.resX+"x"+quality.resY+"->"+v.resX+"x"+v.resY);
}
return v;
}
public static int[] determineMaximumSupportedFramerate(Camera.Parameters parameters) {
int[] maxFps = new int[]{0,0};
String supportedFpsRangesStr = "Supported frame rates: ";
List<int[]> supportedFpsRanges = parameters.getSupportedPreviewFpsRange();
for (Iterator<int[]> it = supportedFpsRanges.iterator(); it.hasNext();) {
int[] interval = it.next();
// Intervals are returned as integers, for example "29970" means "29.970" FPS.
supportedFpsRangesStr += interval[0]/1000+"-"+interval[1]/1000+"fps"+(it.hasNext()?", ":"");
if (interval[1]>maxFps[1] || (interval[0]>maxFps[0] && interval[1]==maxFps[1])) {
maxFps = interval;
}
}
Log.v(TAG,supportedFpsRangesStr);
return maxFps;
}
}