FFmpeg
|
#include <stdint.h>
#include <stdatomic.h>
#include <sys/types.h>
#include "libavutil/frame.h"
#include "libavutil/pixfmt.h"
#include "avcodec.h"
#include "mediacodec_wrapper.h"
Go to the source code of this file.
Data Structures | |
struct | MediaCodecDecContext |
struct | AVMediaCodecBuffer |
Opaque structure representing a MediaCodec buffer to render. More... | |
Functions | |
int | ff_mediacodec_dec_init (AVCodecContext *avctx, MediaCodecDecContext *s, const char *mime, FFAMediaFormat *format) |
int | ff_mediacodec_dec_decode (AVCodecContext *avctx, MediaCodecDecContext *s, AVFrame *frame, int *got_frame, AVPacket *pkt) |
int | ff_mediacodec_dec_flush (AVCodecContext *avctx, MediaCodecDecContext *s) |
int | ff_mediacodec_dec_close (AVCodecContext *avctx, MediaCodecDecContext *s) |
int | ff_mediacodec_dec_is_flushing (AVCodecContext *avctx, MediaCodecDecContext *s) |
int ff_mediacodec_dec_init | ( | AVCodecContext * | avctx, |
MediaCodecDecContext * | s, | ||
const char * | mime, | ||
FFAMediaFormat * | format | ||
) |
Definition at line 454 of file mediacodecdec_common.c.
Referenced by mediacodec_decode_init().
int ff_mediacodec_dec_decode | ( | AVCodecContext * | avctx, |
MediaCodecDecContext * | s, | ||
AVFrame * | frame, | ||
int * | got_frame, | ||
AVPacket * | pkt | ||
) |
Definition at line 540 of file mediacodecdec_common.c.
Referenced by mediacodec_decode_frame(), and mediacodec_process_data().
int ff_mediacodec_dec_flush | ( | AVCodecContext * | avctx, |
MediaCodecDecContext * | s | ||
) |
Definition at line 725 of file mediacodecdec_common.c.
Referenced by mediacodec_decode_flush(), and mediacodec_decode_frame().
int ff_mediacodec_dec_close | ( | AVCodecContext * | avctx, |
MediaCodecDecContext * | s | ||
) |
Definition at line 743 of file mediacodecdec_common.c.
Referenced by ff_mediacodec_dec_init(), and mediacodec_decode_close().
int ff_mediacodec_dec_is_flushing | ( | AVCodecContext * | avctx, |
MediaCodecDecContext * | s | ||
) |
Definition at line 750 of file mediacodecdec_common.c.
Referenced by mediacodec_decode_frame().