FFmpeg
Data Structures | Macros | Functions | Variables
mmaldec.c File Reference
#include <bcm_host.h>
#include <interface/mmal/mmal.h>
#include <interface/mmal/mmal_parameters_video.h>
#include <interface/mmal/util/mmal_util.h>
#include <interface/mmal/util/mmal_util_params.h>
#include <interface/mmal/util/mmal_default_components.h>
#include <interface/mmal/vc/mmal_vc_api.h>
#include <stdatomic.h>
#include "avcodec.h"
#include "decode.h"
#include "hwconfig.h"
#include "internal.h"
#include "libavutil/avassert.h"
#include "libavutil/buffer.h"
#include "libavutil/common.h"
#include "libavutil/imgutils.h"
#include "libavutil/opt.h"
#include "libavutil/log.h"

Go to the source code of this file.

Data Structures

struct  FFBufferEntry
 
struct  FFPoolRef
 
struct  FFBufferRef
 
struct  MMALDecodeContext
 

Macros

#define MAX_DELAYED_FRAMES   16
 
#define FFMMAL_DEC(NAME, ID)
 

Functions

static void ffmmal_poolref_unref (FFPoolRef *ref)
 
static void ffmmal_release_frame (void *opaque, uint8_t *data)
 
static int ffmmal_set_ref (AVFrame *frame, FFPoolRef *pool, MMAL_BUFFER_HEADER_T *buffer)
 
static void ffmmal_stop_decoder (AVCodecContext *avctx)
 
static av_cold int ffmmal_close_decoder (AVCodecContext *avctx)
 
static void input_callback (MMAL_PORT_T *port, MMAL_BUFFER_HEADER_T *buffer)
 
static void output_callback (MMAL_PORT_T *port, MMAL_BUFFER_HEADER_T *buffer)
 
static void control_port_cb (MMAL_PORT_T *port, MMAL_BUFFER_HEADER_T *buffer)
 
static int ffmmal_fill_output_port (AVCodecContext *avctx)
 
static enum AVColorSpace ffmmal_csp_to_av_csp (MMAL_FOURCC_T fourcc)
 
static int ffmal_update_format (AVCodecContext *avctx)
 
static av_cold int ffmmal_init_decoder (AVCodecContext *avctx)
 
static void ffmmal_flush (AVCodecContext *avctx)
 
static int ffmmal_add_packet (AVCodecContext *avctx, AVPacket *avpkt, int is_extradata)
 
static int ffmmal_fill_input_port (AVCodecContext *avctx)
 
static int ffmal_copy_frame (AVCodecContext *avctx, AVFrame *frame, MMAL_BUFFER_HEADER_T *buffer)
 
static int ffmmal_read_frame (AVCodecContext *avctx, AVFrame *frame, int *got_frame)
 
static int ffmmal_receive_frame (AVCodecContext *avctx, AVFrame *frame)
 

Variables

static const AVCodecHWConfigInternal *const mmal_hw_configs []
 
static const AVOption options []
 
static const AVClass ffmmal_dec_class
 

Detailed Description

MMAL Video Decoder

Definition in file mmaldec.c.

Macro Definition Documentation

◆ MAX_DELAYED_FRAMES

#define MAX_DELAYED_FRAMES   16

Definition at line 101 of file mmaldec.c.

◆ FFMMAL_DEC

#define FFMMAL_DEC (   NAME,
  ID 
)
Value:
const AVCodec ff_##NAME##_mmal_decoder = { \
.name = #NAME "_mmal", \
.long_name = NULL_IF_CONFIG_SMALL(#NAME " (mmal)"), \
.type = AVMEDIA_TYPE_VIDEO, \
.id = ID, \
.priv_data_size = sizeof(MMALDecodeContext), \
.priv_class = &ffmmal_dec_class, \
.caps_internal = FF_CODEC_CAP_SETS_PKT_DTS, \
.pix_fmts = (const enum AVPixelFormat[]) { AV_PIX_FMT_MMAL, \
AV_PIX_FMT_YUV420P, \
AV_PIX_FMT_NONE}, \
.hw_configs = mmal_hw_configs, \
.wrapper_name = "mmal", \
};

Definition at line 830 of file mmaldec.c.

Function Documentation

◆ ffmmal_poolref_unref()

static void ffmmal_poolref_unref ( FFPoolRef ref)
static

Definition at line 103 of file mmaldec.c.

Referenced by ffmal_update_format(), ffmmal_close_decoder(), and ffmmal_release_frame().

◆ ffmmal_release_frame()

static void ffmmal_release_frame ( void *  opaque,
uint8_t *  data 
)
static

Definition at line 112 of file mmaldec.c.

Referenced by ffmmal_set_ref().

◆ ffmmal_set_ref()

static int ffmmal_set_ref ( AVFrame frame,
FFPoolRef pool,
MMAL_BUFFER_HEADER_T *  buffer 
)
static

Definition at line 124 of file mmaldec.c.

Referenced by ffmal_copy_frame().

◆ ffmmal_stop_decoder()

static void ffmmal_stop_decoder ( AVCodecContext avctx)
static

Definition at line 150 of file mmaldec.c.

Referenced by ffmmal_close_decoder(), and ffmmal_flush().

◆ ffmmal_close_decoder()

static av_cold int ffmmal_close_decoder ( AVCodecContext avctx)
static

Definition at line 185 of file mmaldec.c.

Referenced by ffmmal_init_decoder().

◆ input_callback()

static void input_callback ( MMAL_PORT_T *  port,
MMAL_BUFFER_HEADER_T *  buffer 
)
static

Definition at line 203 of file mmaldec.c.

Referenced by ff_decklink_read_header(), ffmmal_flush(), and ffmmal_init_decoder().

◆ output_callback()

static void output_callback ( MMAL_PORT_T *  port,
MMAL_BUFFER_HEADER_T *  buffer 
)
static

Definition at line 218 of file mmaldec.c.

Referenced by ffmmal_flush(), ffmmal_init_decoder(), and ffmmal_read_frame().

◆ control_port_cb()

static void control_port_cb ( MMAL_PORT_T *  port,
MMAL_BUFFER_HEADER_T *  buffer 
)
static

Definition at line 226 of file mmaldec.c.

Referenced by ffmmal_flush(), and ffmmal_init_decoder().

◆ ffmmal_fill_output_port()

static int ffmmal_fill_output_port ( AVCodecContext avctx)
static

Definition at line 243 of file mmaldec.c.

Referenced by ffmmal_read_frame(), and ffmmal_receive_frame().

◆ ffmmal_csp_to_av_csp()

static enum AVColorSpace ffmmal_csp_to_av_csp ( MMAL_FOURCC_T  fourcc)
static

Definition at line 263 of file mmaldec.c.

Referenced by ffmal_update_format().

◆ ffmal_update_format()

static int ffmal_update_format ( AVCodecContext avctx)
static

Definition at line 276 of file mmaldec.c.

Referenced by ffmmal_init_decoder(), and ffmmal_read_frame().

◆ ffmmal_init_decoder()

static av_cold int ffmmal_init_decoder ( AVCodecContext avctx)
static

Definition at line 352 of file mmaldec.c.

◆ ffmmal_flush()

static void ffmmal_flush ( AVCodecContext avctx)
static

Definition at line 457 of file mmaldec.c.

◆ ffmmal_add_packet()

static int ffmmal_add_packet ( AVCodecContext avctx,
AVPacket avpkt,
int  is_extradata 
)
static

Definition at line 484 of file mmaldec.c.

Referenced by ffmmal_receive_frame().

◆ ffmmal_fill_input_port()

static int ffmmal_fill_input_port ( AVCodecContext avctx)
static

Definition at line 571 of file mmaldec.c.

Referenced by ffmmal_read_frame(), and ffmmal_receive_frame().

◆ ffmal_copy_frame()

static int ffmal_copy_frame ( AVCodecContext avctx,
AVFrame frame,
MMAL_BUFFER_HEADER_T *  buffer 
)
static

Definition at line 618 of file mmaldec.c.

Referenced by ffmmal_read_frame().

◆ ffmmal_read_frame()

static int ffmmal_read_frame ( AVCodecContext avctx,
AVFrame frame,
int got_frame 
)
static

Definition at line 666 of file mmaldec.c.

Referenced by ffmmal_receive_frame().

◆ ffmmal_receive_frame()

static int ffmmal_receive_frame ( AVCodecContext avctx,
AVFrame frame 
)
static

Definition at line 766 of file mmaldec.c.

Variable Documentation

◆ mmal_hw_configs

const AVCodecHWConfigInternal* const mmal_hw_configs[]
static
Initial value:
= {
}

Definition at line 812 of file mmaldec.c.

◆ options

const AVOption options[]
static
Initial value:
={
{"extra_buffers", "extra buffers", 0x42, AV_OPT_TYPE_INT, {.i64 = 10}, 0, 256, 0},
{"extra_decoder_buffers", "extra MMAL internal buffered frames", 0x42, AV_OPT_TYPE_INT, {.i64 = 10}, 0, 256, 0},
{NULL}
}

Definition at line 817 of file mmaldec.c.

◆ ffmmal_dec_class

const AVClass ffmmal_dec_class
static
Initial value:
= {
.class_name = "mmal_dec",
.item_name = av_default_item_name,
.option = options,
}

Definition at line 823 of file mmaldec.c.

AVCodec
AVCodec.
Definition: codec.h:202
AVPixelFormat
AVPixelFormat
Pixel format.
Definition: pixfmt.h:64
FF_CODEC_CAP_SETS_PKT_DTS
#define FF_CODEC_CAP_SETS_PKT_DTS
Decoders marked with FF_CODEC_CAP_SETS_PKT_DTS want to set AVFrame.pkt_dts manually.
Definition: internal.h:57
ffmmal_receive_frame
static int ffmmal_receive_frame(AVCodecContext *avctx, AVFrame *frame)
Definition: mmaldec.c:766
AV_CODEC_CAP_HARDWARE
#define AV_CODEC_CAP_HARDWARE
Codec is backed by a hardware implementation.
Definition: codec.h:162
AV_PIX_FMT_MMAL
@ AV_PIX_FMT_MMAL
HW acceleration though MMAL, data[3] contains a pointer to the MMAL_BUFFER_HEADER_T structure.
Definition: pixfmt.h:217
init
static int init
Definition: av_tx.c:47
mmal_hw_configs
static const AVCodecHWConfigInternal *const mmal_hw_configs[]
Definition: mmaldec.c:812
options
static const AVOption options[]
Definition: mmaldec.c:817
ffmmal_flush
static void ffmmal_flush(AVCodecContext *avctx)
Definition: mmaldec.c:457
pix_fmts
static enum AVPixelFormat pix_fmts[]
Definition: libkvazaar.c:296
ffmmal_init_decoder
static av_cold int ffmmal_init_decoder(AVCodecContext *avctx)
Definition: mmaldec.c:352
LIBAVUTIL_VERSION_INT
#define LIBAVUTIL_VERSION_INT
Definition: version.h:85
NULL
#define NULL
Definition: coverity.c:32
flush
static void flush(AVCodecContext *avctx)
Definition: aacdec_template.c:593
receive_frame
static CopyRet receive_frame(AVCodecContext *avctx, AVFrame *frame, int *got_frame)
Definition: crystalhd.c:559
av_default_item_name
const char * av_default_item_name(void *ptr)
Return the context name.
Definition: log.c:235
ffmmal_close_decoder
static av_cold int ffmmal_close_decoder(AVCodecContext *avctx)
Definition: mmaldec.c:185
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:117
HW_CONFIG_INTERNAL
#define HW_CONFIG_INTERNAL(format)
Definition: hwconfig.h:57
MMALDecodeContext
Definition: mmaldec.c:69
AVCodec::name
const char * name
Name of the codec implementation.
Definition: codec.h:209
AV_OPT_TYPE_INT
@ AV_OPT_TYPE_INT
Definition: opt.h:224
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:82
AVMEDIA_TYPE_VIDEO
@ AVMEDIA_TYPE_VIDEO
Definition: avutil.h:201
ID
#define ID(x)
Definition: cast5.c:29
ffmmal_dec_class
static const AVClass ffmmal_dec_class
Definition: mmaldec.c:823