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
|
/*
* 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 <libavcodec/mediacodec.h>
#include "common/common.h"
#include "vo.h"
#include "video/mp_image.h"
struct priv {
struct mp_image *next_image;
};
static int preinit(struct vo *vo)
{
return 0;
}
static void flip_page(struct vo *vo)
{
struct priv *p = vo->priv;
if (!p->next_image)
return;
AVMediaCodecBuffer *buffer = (AVMediaCodecBuffer *)p->next_image->planes[3];
av_mediacodec_release_buffer(buffer, 1);
mp_image_unrefp(&p->next_image);
}
static void draw_frame(struct vo *vo, struct vo_frame *frame)
{
struct priv *p = vo->priv;
mp_image_t *mpi = NULL;
if (!frame->redraw && !frame->repeat)
mpi = mp_image_new_ref(frame->current);
talloc_free(p->next_image);
p->next_image = mpi;
}
static int query_format(struct vo *vo, int format)
{
return format == IMGFMT_MEDIACODEC;
}
static int control(struct vo *vo, uint32_t request, void *data)
{
return VO_NOTIMPL;
}
static int reconfig(struct vo *vo, struct mp_image_params *params)
{
return 0;
}
static void uninit(struct vo *vo)
{
struct priv *p = vo->priv;
mp_image_unrefp(&p->next_image);
}
const struct vo_driver video_out_mediacodec_embed = {
.description = "Android (Embedded MediaCodec Surface)",
.name = "mediacodec_embed",
.caps = VO_CAP_NOREDRAW,
.preinit = preinit,
.query_format = query_format,
.control = control,
.draw_frame = draw_frame,
.flip_page = flip_page,
.reconfig = reconfig,
.uninit = uninit,
.priv_size = sizeof(struct priv),
};
|