|
FFmpeg
|
#include "config_components.h"#include <stdint.h>#include <string.h>#include "libavutil/avassert.h"#include "libavutil/common.h"#include "libavutil/mem.h"#include "libavutil/opt.h"#include "libavutil/intreadwrite.h"#include "libavutil/pixfmt.h"#include "libavutil/internal.h"#include "avcodec.h"#include "codec_internal.h"#include "decode.h"#include "h264_parse.h"#include "h264_ps.h"#include "hevc/parse.h"#include "hwconfig.h"#include "internal.h"#include "jni.h"#include "mediacodec_wrapper.h"#include "mediacodecdec_common.h"Go to the source code of this file.
Data Structures | |
| struct | MediaCodecContext |
Macros | |
| #define | OFFSET(x) |
| #define | VD AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM |
| #define | DECLARE_MEDIACODEC_VCLASS(short_name) |
| #define | DECLARE_MEDIACODEC_VDEC(short_name, full_name, codec_id, bsf) |
| #define | AD AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_DECODING_PARAM |
| #define | DECLARE_MEDIACODEC_ACLASS(short_name) |
| #define | DECLARE_MEDIACODEC_ADEC(short_name, full_name, codec_id, bsf) |
Functions | |
| static av_cold int | mediacodec_decode_close (AVCodecContext *avctx) |
| static av_cold int | mediacodec_decode_init (AVCodecContext *avctx) |
| static int | mediacodec_receive_frame (AVCodecContext *avctx, AVFrame *frame) |
| static void | mediacodec_decode_flush (AVCodecContext *avctx) |
Variables | |
| static const AVCodecHWConfigInternal *const | mediacodec_hw_configs [] |
| static const AVOption | ff_mediacodec_vdec_options [] |
| static const AVOption | ff_mediacodec_adec_options [] |
| #define OFFSET | ( | x | ) |
Definition at line 594 of file mediacodecdec.c.
| #define VD AV_OPT_FLAG_VIDEO_PARAM | AV_OPT_FLAG_DECODING_PARAM |
Definition at line 595 of file mediacodecdec.c.
| #define DECLARE_MEDIACODEC_VCLASS | ( | short_name | ) |
Definition at line 606 of file mediacodecdec.c.
| #define DECLARE_MEDIACODEC_VDEC | ( | short_name, | |
| full_name, | |||
| codec_id, | |||
| bsf ) |
Definition at line 614 of file mediacodecdec.c.
| #define AD AV_OPT_FLAG_AUDIO_PARAM | AV_OPT_FLAG_DECODING_PARAM |
Definition at line 662 of file mediacodecdec.c.
| #define DECLARE_MEDIACODEC_ACLASS | ( | short_name | ) |
Definition at line 671 of file mediacodecdec.c.
| #define DECLARE_MEDIACODEC_ADEC | ( | short_name, | |
| full_name, | |||
| codec_id, | |||
| bsf ) |
Definition at line 679 of file mediacodecdec.c.
|
static |
Definition at line 64 of file mediacodecdec.c.
Referenced by mediacodec_decode_init().
|
static |
Definition at line 308 of file mediacodecdec.c.
|
static |
Definition at line 489 of file mediacodecdec.c.
|
static |
Definition at line 572 of file mediacodecdec.c.
|
static |
Definition at line 581 of file mediacodecdec.c.
|
static |
Definition at line 596 of file mediacodecdec.c.
|
static |
Definition at line 663 of file mediacodecdec.c.