2 * Android MediaCodec decoder
4 * Copyright (c) 2015-2016 Matthieu Bouron <matthieu.bouron stupeflix.com>
6 * This file is part of FFmpeg.
8 * FFmpeg is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * FFmpeg is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with FFmpeg; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
23 #ifndef AVCODEC_MEDIACODECDEC_COMMON_H
24 #define AVCODEC_MEDIACODECDEC_COMMON_H
27 #include <stdatomic.h>
29 #include <sys/types.h>
31 #include "libavutil/frame.h"
32 #include "libavutil/pixfmt.h"
35 #include "mediacodec_wrapper.h"
37 typedef struct MediaCodecDecContext {
39 AVCodecContext *avctx;
41 atomic_int hw_buffer_count;
46 FFAMediaFormat *format;
67 uint64_t output_buffer_count;
68 ssize_t current_input_buffer;
73 } MediaCodecDecContext;
75 int ff_mediacodec_dec_init(AVCodecContext *avctx,
76 MediaCodecDecContext *s,
78 FFAMediaFormat *format);
80 int ff_mediacodec_dec_send(AVCodecContext *avctx,
81 MediaCodecDecContext *s,
85 int ff_mediacodec_dec_receive(AVCodecContext *avctx,
86 MediaCodecDecContext *s,
90 int ff_mediacodec_dec_flush(AVCodecContext *avctx,
91 MediaCodecDecContext *s);
93 int ff_mediacodec_dec_close(AVCodecContext *avctx,
94 MediaCodecDecContext *s);
96 int ff_mediacodec_dec_is_flushing(AVCodecContext *avctx,
97 MediaCodecDecContext *s);
99 typedef struct MediaCodecBuffer {
101 MediaCodecDecContext *ctx;
109 #endif /* AVCODEC_MEDIACODECDEC_COMMON_H */