FFmpeg
Data Structures | Macros | Functions | Variables
mediacodecdec.c File Reference
#include "config_components.h"
#include <stdint.h>
#include <string.h>
#include "libavutil/avassert.h"
#include "libavutil/common.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  MediaCodecH264DecContext
 

Macros

#define OFFSET(x)   offsetof(MediaCodecH264DecContext, 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)
 

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 []
 

Macro Definition Documentation

◆ OFFSET

#define OFFSET (   x)    offsetof(MediaCodecH264DecContext, x)

Definition at line 548 of file mediacodecdec.c.

◆ VD

Definition at line 549 of file mediacodecdec.c.

◆ DECLARE_MEDIACODEC_VCLASS

#define DECLARE_MEDIACODEC_VCLASS (   short_name)
Value:
static const AVClass ff_##short_name##_mediacodec_dec_class = { \
.class_name = #short_name "_mediacodec", \
.item_name = av_default_item_name, \
.version = LIBAVUTIL_VERSION_INT, \
};

Definition at line 558 of file mediacodecdec.c.

◆ DECLARE_MEDIACODEC_VDEC

#define DECLARE_MEDIACODEC_VDEC (   short_name,
  full_name,
  codec_id,
  bsf 
)
Value:
const FFCodec ff_ ## short_name ## _mediacodec_decoder = { \
.p.name = #short_name "_mediacodec", \
CODEC_LONG_NAME(full_name " Android MediaCodec decoder"), \
.p.type = AVMEDIA_TYPE_VIDEO, \
.p.id = codec_id, \
.p.priv_class = &ff_##short_name##_mediacodec_dec_class, \
.priv_data_size = sizeof(MediaCodecH264DecContext), \
.bsfs = bsf, \
.hw_configs = mediacodec_hw_configs, \
.p.wrapper_name = "mediacodec", \
}; \

Definition at line 566 of file mediacodecdec.c.

Function Documentation

◆ mediacodec_decode_close()

static av_cold int mediacodec_decode_close ( AVCodecContext avctx)
static

Definition at line 61 of file mediacodecdec.c.

Referenced by mediacodec_decode_init().

◆ mediacodec_decode_init()

static av_cold int mediacodec_decode_init ( AVCodecContext avctx)
static

Definition at line 306 of file mediacodecdec.c.

◆ mediacodec_receive_frame()

static int mediacodec_receive_frame ( AVCodecContext avctx,
AVFrame frame 
)
static

Definition at line 443 of file mediacodecdec.c.

◆ mediacodec_decode_flush()

static void mediacodec_decode_flush ( AVCodecContext avctx)
static

Definition at line 526 of file mediacodecdec.c.

Variable Documentation

◆ mediacodec_hw_configs

const AVCodecHWConfigInternal* const mediacodec_hw_configs[]
static
Initial value:

Definition at line 535 of file mediacodecdec.c.

◆ ff_mediacodec_vdec_options

const AVOption ff_mediacodec_vdec_options[]
static
Initial value:
= {
{ "delay_flush", "Delay flush until hw output buffers are returned to the decoder",
OFFSET(delay_flush), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, VD },
{ "ndk_codec", "Use MediaCodec from NDK",
OFFSET(use_ndk_codec), AV_OPT_TYPE_BOOL, {.i64 = -1}, -1, 1, VD },
{ NULL }
}

Definition at line 550 of file mediacodecdec.c.

mediacodec_receive_frame
static int mediacodec_receive_frame(AVCodecContext *avctx, AVFrame *frame)
Definition: mediacodecdec.c:443
AV_CODEC_CAP_HARDWARE
#define AV_CODEC_CAP_HARDWARE
Codec is backed by a hardware implementation.
Definition: codec.h:145
mediacodec_decode_init
static av_cold int mediacodec_decode_init(AVCodecContext *avctx)
Definition: mediacodecdec.c:306
AV_HWDEVICE_TYPE_MEDIACODEC
@ AV_HWDEVICE_TYPE_MEDIACODEC
Definition: hwcontext.h:38
FF_CODEC_CAP_NOT_INIT_THREADSAFE
#define FF_CODEC_CAP_NOT_INIT_THREADSAFE
The codec is not known to be init-threadsafe (i.e.
Definition: codec_internal.h:34
FFCodec
Definition: codec_internal.h:127
FFCodec::p
AVCodec p
The public AVCodec.
Definition: codec_internal.h:131
AV_CODEC_HW_CONFIG_METHOD_HW_DEVICE_CTX
@ AV_CODEC_HW_CONFIG_METHOD_HW_DEVICE_CTX
The codec supports this format via the hw_device_ctx interface.
Definition: codec.h:302
OFFSET
#define OFFSET(x)
Definition: mediacodecdec.c:548
codec_id
enum AVCodecID codec_id
Definition: vaapi_decode.c:386
AV_PIX_FMT_MEDIACODEC
@ AV_PIX_FMT_MEDIACODEC
hardware decoding through MediaCodec
Definition: pixfmt.h:316
LIBAVUTIL_VERSION_INT
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
AVClass
Describe the class of an AVClass context structure.
Definition: log.h:66
NULL
#define NULL
Definition: coverity.c:32
av_default_item_name
const char * av_default_item_name(void *ptr)
Return the context name.
Definition: log.c:237
init
int(* init)(AVBSFContext *ctx)
Definition: dts2pts.c:365
VD
#define VD
Definition: mediacodecdec.c:549
MediaCodecH264DecContext
Definition: mediacodecdec.c:47
DECLARE_MEDIACODEC_VCLASS
#define DECLARE_MEDIACODEC_VCLASS(short_name)
Definition: mediacodecdec.c:558
AVCodecHWConfigInternal
Definition: hwconfig.h:25
mediacodec_decode_flush
static void mediacodec_decode_flush(AVCodecContext *avctx)
Definition: mediacodecdec.c:526
AVCodec::name
const char * name
Name of the codec implementation.
Definition: codec.h:194
AV_CODEC_HW_CONFIG_METHOD_AD_HOC
@ AV_CODEC_HW_CONFIG_METHOD_AD_HOC
The codec supports this format by some ad-hoc method.
Definition: codec.h:331
AVClass::class_name
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:71
FF_CODEC_RECEIVE_FRAME_CB
#define FF_CODEC_RECEIVE_FRAME_CB(func)
Definition: codec_internal.h:293
AV_CODEC_CAP_DELAY
#define AV_CODEC_CAP_DELAY
Encoder or decoder requires flushing with NULL input at the end in order to give the complete and cor...
Definition: codec.h:76
ff_mediacodec_vdec_options
static const AVOption ff_mediacodec_vdec_options[]
Definition: mediacodecdec.c:550
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
AV_OPT_TYPE_BOOL
@ AV_OPT_TYPE_BOOL
Definition: opt.h:251
AV_CODEC_CAP_AVOID_PROBING
#define AV_CODEC_CAP_AVOID_PROBING
Decoder is not a preferred choice for probing.
Definition: codec.h:138
mediacodec_hw_configs
static const AVCodecHWConfigInternal *const mediacodec_hw_configs[]
Definition: mediacodecdec.c:535
mediacodec_decode_close
static av_cold int mediacodec_decode_close(AVCodecContext *avctx)
Definition: mediacodecdec.c:61