aboutsummaryrefslogtreecommitdiff
path: root/src/com/android/exoplayer2/ext/ffmpeg/FfmpegLibrary.java
blob: daa77340b495d978998883b7646a037e1993a4df (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
/*
 * 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 com.google.android.exoplayer2.util.LibraryLoader;
import com.google.android.exoplayer2.util.MimeTypes;

/**
 * This class is based on com.google.android.exoplayer2.ext.ffmpeg.FfmpegLibrary from ExoPlayer2
 * in order to support mp2 decoder.
 * Configures and queries the underlying native library.
 */
public final class FfmpegLibrary {

    private static final LibraryLoader LOADER =
            new LibraryLoader("avutil", "avresample", "avcodec", "ffmpeg");

    private FfmpegLibrary() {}

    /**
     * Overrides the names of the FFmpeg native libraries. If an application wishes to call this
     * method, it must do so before calling any other method defined by this class, and before
     * instantiating a {@link FfmpegAudioRenderer} instance.
     */
    public static void setLibraries(String... libraries) {
        LOADER.setLibraries(libraries);
    }

    /**
     * Returns whether the underlying library is available, loading it if necessary.
     */
    public static boolean isAvailable() {
        return LOADER.isAvailable();
    }

    /**
     * Returns the version of the underlying library if available, or null otherwise.
     */
    public static String getVersion() {
        return isAvailable() ? ffmpegGetVersion() : null;
    }

    /**
     * Returns whether the underlying library supports the specified MIME type.
     */
    public static boolean supportsFormat(String mimeType) {
        if (!isAvailable()) {
            return false;
        }
        String codecName = getCodecName(mimeType);
        return codecName != null && ffmpegHasDecoder(codecName);
    }

    /**
     * Returns the name of the FFmpeg decoder that could be used to decode {@code mimeType}.
     */
    /* package */ static String getCodecName(String mimeType) {
        switch (mimeType) {
            case MimeTypes.AUDIO_MPEG_L2:
                return "mp2";
            case MimeTypes.AUDIO_AC3:
                return "ac3";
            default:
                return null;
        }
    }

    private static native String ffmpegGetVersion();
    private static native boolean ffmpegHasDecoder(String codecName);

}