blob: 4cf206d26512c81978a90c1f427be1a1684af858 (
plain)
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
|
/*
* This is the source code of Telegram for Android v. 1.7.x.
* It is licensed under GNU GPL v. 2 or later.
* You should have received a copy of the license in this archive (see LICENSE).
*
* Copyright Nikolai Kudashov, 2013-2014.
*/
package de.pixart.messenger.utils.video;
import android.annotation.TargetApi;
import android.media.MediaCodec;
import android.media.MediaFormat;
import com.googlecode.mp4parser.util.Matrix;
import java.io.File;
import java.util.ArrayList;
@TargetApi(16)
public class Mp4Movie {
private Matrix matrix = Matrix.ROTATE_0;
private ArrayList<Track> tracks = new ArrayList<Track>();
private File cacheFile;
private int width;
private int height;
public Matrix getMatrix() {
return matrix;
}
public int getWidth() {
return width;
}
public int getHeight() {
return height;
}
public void setCacheFile(File file) {
cacheFile = file;
}
public void setRotation(int angle) {
if (angle == 0) {
matrix = Matrix.ROTATE_0;
} else if (angle == 90) {
matrix = Matrix.ROTATE_90;
} else if (angle == 180) {
matrix = Matrix.ROTATE_180;
} else if (angle == 270) {
matrix = Matrix.ROTATE_270;
}
}
public void setSize(int w, int h) {
width = w;
height = h;
}
public ArrayList<Track> getTracks() {
return tracks;
}
public File getCacheFile() {
return cacheFile;
}
public void addSample(int trackIndex, long offset, MediaCodec.BufferInfo bufferInfo) throws Exception {
if (trackIndex < 0 || trackIndex >= tracks.size()) {
return;
}
Track track = tracks.get(trackIndex);
track.addSample(offset, bufferInfo);
}
public int addTrack(MediaFormat mediaFormat, boolean isAudio) throws Exception {
tracks.add(new Track(tracks.size(), mediaFormat, isAudio));
return tracks.size() - 1;
}
}
|