FFmpeg
Data Structures | Functions | Variables
hcom.c File Reference
#include "libavutil/intreadwrite.h"
#include "avcodec.h"
#include "codec_internal.h"
#include "decode.h"
#include "get_bits.h"

Go to the source code of this file.

Data Structures

struct  HEntry
 
struct  HCOMContext
 

Functions

static av_cold int hcom_init (AVCodecContext *avctx)
 
static int hcom_decode (AVCodecContext *avctx, AVFrame *frame, int *got_frame, AVPacket *pkt)
 
static av_cold int hcom_close (AVCodecContext *avctx)
 

Variables

const FFCodec ff_hcom_decoder
 

Function Documentation

◆ hcom_init()

static av_cold int hcom_init ( AVCodecContext avctx)
static

Definition at line 44 of file hcom.c.

◆ hcom_decode()

static int hcom_decode ( AVCodecContext avctx,
AVFrame frame,
int got_frame,
AVPacket pkt 
)
static

Definition at line 83 of file hcom.c.

◆ hcom_close()

static av_cold int hcom_close ( AVCodecContext avctx)
static

Definition at line 128 of file hcom.c.

Variable Documentation

◆ ff_hcom_decoder

const FFCodec ff_hcom_decoder
Initial value:
= {
.p.name = "hcom",
CODEC_LONG_NAME("HCOM Audio"),
.p.type = AVMEDIA_TYPE_AUDIO,
.priv_data_size = sizeof(HCOMContext),
.close = hcom_close,
.p.capabilities = AV_CODEC_CAP_DR1,
.caps_internal = FF_CODEC_CAP_INIT_CLEANUP,
}

Definition at line 137 of file hcom.c.

FF_CODEC_CAP_INIT_CLEANUP
#define FF_CODEC_CAP_INIT_CLEANUP
The codec allows calling the close function for deallocation even if the init function returned a fai...
Definition: codec_internal.h:42
AV_CODEC_ID_HCOM
@ AV_CODEC_ID_HCOM
Definition: codec_id.h:529
HCOMContext
Definition: hcom.c:32
hcom_init
static av_cold int hcom_init(AVCodecContext *avctx)
Definition: hcom.c:44
FF_CODEC_DECODE_CB
#define FF_CODEC_DECODE_CB(func)
Definition: codec_internal.h:287
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:202
CODEC_LONG_NAME
#define CODEC_LONG_NAME(str)
Definition: codec_internal.h:272
hcom_decode
static int hcom_decode(AVCodecContext *avctx, AVFrame *frame, int *got_frame, AVPacket *pkt)
Definition: hcom.c:83
init
int(* init)(AVBSFContext *ctx)
Definition: dts2pts.c:365
AV_CODEC_CAP_DR1
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition: codec.h:52
hcom_close
static av_cold int hcom_close(AVCodecContext *avctx)
Definition: hcom.c:128