summaryrefslogtreecommitdiffstats
path: root/video/decode/mediacodec.c
blob: 37ce1b8a2f4b6576d7b49e34ba9078c1bd6f7dca (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
/*
 * This file is part of mpv.
 *
 * mpv is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * mpv 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 Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with mpv.  If not, see <http://www.gnu.org/licenses/>.
 */

#include "lavc.h"
#include "common/common.h"

static const char *const codecs[][2] = {
    {"h264",        "h264_mediacodec"},
    {0}
};

static const char *map_codec(const char *c)
{
    for (int n = 0; codecs[n][0]; n++) {
        if (c && strcmp(codecs[n][0], c) == 0)
            return codecs[n][1];
    }
    return NULL;
}

static int init_decoder(struct lavc_ctx *ctx, int w, int h)
{
    return 0;
}

static void uninit(struct lavc_ctx *ctx)
{
}

static int init(struct lavc_ctx *ctx)
{
    return 0;
}

static int probe(struct vd_lavc_hwdec *hwdec, struct mp_hwdec_info *info,
                 const char *decoder)
{
    return map_codec(decoder) ? 0 : HWDEC_ERR_NO_CODEC;
}

static const char *get_codec(struct lavc_ctx *ctx, const char *codec)
{
    return map_codec(codec);
}

const struct vd_lavc_hwdec mp_vd_lavc_mediacodec = {
    .type = HWDEC_MEDIACODEC,
    .image_format = IMGFMT_NV12,
    .probe = probe,
    .init = init,
    .uninit = uninit,
    .init_decoder = init_decoder,
    .get_codec = get_codec,
};