aboutsummaryrefslogtreecommitdiff
path: root/src/com/android/exoplayer2/ext/ffmpeg/FfmpegAudioDecoder.java
blob: 2b7817dc75d20eb5f70695b46aaad821455dc9c6 (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
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
/*
 * Copyright (C) 2017 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.google.android.exoplayer2.ext.ffmpeg;

import android.content.Context;
import android.content.pm.PackageManager;
import com.google.android.exoplayer2.decoder.DecoderInputBuffer;
import com.google.android.exoplayer2.decoder.SimpleOutputBuffer;
import com.google.android.exoplayer2.util.MimeTypes;
import com.android.tv.common.SoftPreconditions;

import java.nio.ByteBuffer;

/**
 * Audio decoder which uses ffmpeg extension of ExoPlayer2. Since {@link FfmpegDecoder} is package
 * private, expose the decoder via this class. Supported formats are AC3 and MP2.
 */
public class FfmpegAudioDecoder {
    private static final int NUM_DECODER_BUFFERS = 1;

    // The largest AC3 sample size. This is bigger than the largest MP2 sample size (1729).
    private static final int INITIAL_INPUT_BUFFER_SIZE = 2560;
    private static boolean AVAILABLE;

    static {
        AVAILABLE =
                FfmpegLibrary.supportsFormat(MimeTypes.AUDIO_AC3)
                        && FfmpegLibrary.supportsFormat(MimeTypes.AUDIO_MPEG_L2);
    }

    private FfmpegDecoder mDecoder;
    private DecoderInputBuffer mInputBuffer;
    private SimpleOutputBuffer mOutputBuffer;
    private boolean mStarted;

    /** Return whether Ffmpeg based software audio decoder is available. */
    public static boolean isAvailable() {
        return AVAILABLE;
    }

    /** Creates an Ffmpeg based software audio decoder. */
    public FfmpegAudioDecoder(Context context) {
        if (context.checkSelfPermission("android.permission.INTERNET")
                == PackageManager.PERMISSION_GRANTED) {
            throw new IllegalStateException("This code should run in an isolated process");
        }
    }

    /**
     * Decodes an audio sample.
     *
     * @param timeUs presentation timestamp of the sample
     * @param sample data
     */
    public void decode(long timeUs, byte[] sample) {
        SoftPreconditions.checkState(AVAILABLE);
        mInputBuffer.data.clear();
        mInputBuffer.data.put(sample);
        mInputBuffer.data.flip();
        mInputBuffer.timeUs = timeUs;
        mDecoder.decode(mInputBuffer, mOutputBuffer, !mStarted);
        if (!mStarted) {
            mStarted = true;
        }
    }

    /** Returns a decoded sample from decoder. */
    public ByteBuffer getDecodedSample() {
        return mOutputBuffer.data;
    }

    /** Returns the presentation time for the decoded sample. */
    public long getDecodedTimeUs() {
        return mOutputBuffer.timeUs;
    }

    /**
     * Clear previous decode state if any. Prepares to decode samples of the specified encoding.
     * This method should be called before using decode.
     *
     * @param mime audio encoding
     */
    public void resetDecoderState(String mime) {
        SoftPreconditions.checkState(AVAILABLE);
        release();
        try {
            mDecoder =
                    new FfmpegDecoder(
                            NUM_DECODER_BUFFERS,
                            NUM_DECODER_BUFFERS,
                            INITIAL_INPUT_BUFFER_SIZE,
                            mime,
                            null);
            mStarted = false;
            mInputBuffer = mDecoder.createInputBuffer();
            // Since native JNI requires direct buffer, we should allocate it by #allocateDirect.
            mInputBuffer.data = ByteBuffer.allocateDirect(INITIAL_INPUT_BUFFER_SIZE);
            mOutputBuffer = mDecoder.createOutputBuffer();
        } catch (FfmpegDecoderException e) {
            // if AVAILABLE is {@code true}, this will not happen.
        }
    }

    /** Releases all the resource. */
    public void release() {
        SoftPreconditions.checkState(AVAILABLE);
        if (mDecoder != null) {
            mDecoder.release();
            mInputBuffer = null;
            mOutputBuffer = null;
            mDecoder = null;
        }
    }
}