FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
mediacodecdec.h
Go to the documentation of this file.
1 /*
2  * Android MediaCodec decoder
3  *
4  * Copyright (c) 2015-2016 Matthieu Bouron <matthieu.bouron stupeflix.com>
5  *
6  * This file is part of FFmpeg.
7  *
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.
12  *
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.
17  *
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
21  */
22 
23 #ifndef AVCODEC_MEDIACODECDEC_H
24 #define AVCODEC_MEDIACODECDEC_H
25 
26 #include <stdint.h>
27 #include <sys/types.h>
28 
29 #include "libavutil/frame.h"
30 #include "libavutil/pixfmt.h"
31 
32 #include "avcodec.h"
33 #include "mediacodec_wrapper.h"
34 
35 typedef struct MediaCodecDecContext {
36 
37  char *codec_name;
38 
41 
42  int started;
43  int flushing;
44  int eos;
45 
46  int width;
47  int height;
48  int stride;
52  int crop_top;
54  int crop_left;
56 
58 
61 
63 
66  const char *mime,
68 
71  AVFrame *frame,
72  int *got_frame,
73  AVPacket *pkt);
74 
77 
80 
81 #endif /* AVCODEC_MEDIACODECDEC_H */
const char * s
Definition: avisynth_c.h:631
This structure describes decoded (raw) audio or video data.
Definition: frame.h:184
int ff_mediacodec_dec_flush(AVCodecContext *avctx, MediaCodecDecContext *s)
static AVPacket pkt
int ff_mediacodec_dec_init(AVCodecContext *avctx, MediaCodecDecContext *s, const char *mime, FFAMediaFormat *format)
static AVFrame * frame
int ff_mediacodec_dec_close(AVCodecContext *avctx, MediaCodecDecContext *s)
enum AVPixelFormat pix_fmt
Definition: mediacodecdec.h:51
reference-counted frame API
Libavcodec external API header.
main external API structure.
Definition: avcodec.h:1649
int ff_mediacodec_dec_decode(AVCodecContext *avctx, MediaCodecDecContext *s, AVFrame *frame, int *got_frame, AVPacket *pkt)
static const char * format
Definition: movenc.c:47
FFAMediaCodec * codec
Definition: mediacodecdec.h:39
FFAMediaFormat * format
Definition: mediacodecdec.h:40
pixel format definitions
uint64_t dequeued_buffer_nb
Definition: mediacodecdec.h:57
AVPixelFormat
Pixel format.
Definition: pixfmt.h:60
This structure stores compressed data.
Definition: avcodec.h:1557