FFmpeg
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
Data Structures | Functions | Variables
hcom.c File Reference
#include "libavutil/intreadwrite.h"
#include "avcodec.h"
#include "codec_internal.h"
#include "get_bits.h"
#include "internal.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",
.p.long_name = NULL_IF_CONFIG_SMALL("HCOM Audio"),
.p.type = AVMEDIA_TYPE_AUDIO,
.priv_data_size = sizeof(HCOMContext),
.close = hcom_close,
.p.capabilities = AV_CODEC_CAP_DR1,
}

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:39
AV_CODEC_ID_HCOM
@ AV_CODEC_ID_HCOM
Definition: codec_id.h:516
HCOMContext
Definition: hcom.c:32
init
static int init
Definition: av_tx.c:47
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:254
AVMEDIA_TYPE_AUDIO
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:202
hcom_decode
static int hcom_decode(AVCodecContext *avctx, AVFrame *frame, int *got_frame, AVPacket *pkt)
Definition: hcom.c:83
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
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
FF_CODEC_CAP_INIT_THREADSAFE
#define FF_CODEC_CAP_INIT_THREADSAFE
The codec does not modify any global variables in the init function, allowing to call the init functi...
Definition: codec_internal.h:31