FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Macros | Functions | Variables
fic.c File Reference
#include "libavutil/common.h"
#include "libavutil/opt.h"
#include "avcodec.h"
#include "internal.h"
#include "get_bits.h"
#include "golomb.h"

Go to the source code of this file.

Data Structures

struct  FICThreadContext
 
struct  FICContext
 

Macros

#define FIC_HEADER_SIZE   27
 

Functions

static av_always_inline void fic_idct (int16_t *blk, int step, int shift, int rnd)
 
static void fic_idct_put (uint8_t *dst, int stride, int16_t *block)
 
static int fic_decode_block (FICContext *ctx, GetBitContext *gb, uint8_t *dst, int stride, int16_t *block, int *is_p)
 
static int fic_decode_slice (AVCodecContext *avctx, void *tdata)
 
static av_always_inline void fic_alpha_blend (uint8_t *dst, uint8_t *src, int size, uint8_t *alpha)
 
static void fic_draw_cursor (AVCodecContext *avctx, int cur_x, int cur_y)
 
static int fic_decode_frame (AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
 
static av_cold int fic_decode_close (AVCodecContext *avctx)
 
static av_cold int fic_decode_init (AVCodecContext *avctx)
 

Variables

static const uint8_t fic_qmat_hq [64]
 
static const uint8_t fic_qmat_lq [64]
 
static const uint8_t fic_header [7] = { 0, 0, 1, 'F', 'I', 'C', 'V' }
 
static const AVOption options []
 
static const AVClass fic_decoder_class
 
AVCodec ff_fic_decoder
 

Macro Definition Documentation

#define FIC_HEADER_SIZE   27

Definition at line 84 of file fic.c.

Referenced by fic_decode_frame().

Function Documentation

static av_always_inline void fic_idct ( int16_t *  blk,
int  step,
int  shift,
int  rnd 
)
static

Definition at line 86 of file fic.c.

Referenced by fic_idct_put().

static void fic_idct_put ( uint8_t dst,
int  stride,
int16_t *  block 
)
static

Definition at line 110 of file fic.c.

Referenced by fic_decode_block().

static int fic_decode_block ( FICContext ctx,
GetBitContext gb,
uint8_t dst,
int  stride,
int16_t *  block,
int is_p 
)
static

Definition at line 136 of file fic.c.

Referenced by fic_decode_slice().

static int fic_decode_slice ( AVCodecContext avctx,
void tdata 
)
static

Definition at line 166 of file fic.c.

Referenced by fic_decode_frame().

static av_always_inline void fic_alpha_blend ( uint8_t dst,
uint8_t src,
int  size,
uint8_t alpha 
)
static

Definition at line 199 of file fic.c.

Referenced by fic_draw_cursor().

static void fic_draw_cursor ( AVCodecContext avctx,
int  cur_x,
int  cur_y 
)
static

Definition at line 208 of file fic.c.

Referenced by fic_decode_frame().

static int fic_decode_frame ( AVCodecContext avctx,
void data,
int got_frame,
AVPacket avpkt 
)
static

Definition at line 262 of file fic.c.

static av_cold int fic_decode_close ( AVCodecContext avctx)
static

Definition at line 431 of file fic.c.

static av_cold int fic_decode_init ( AVCodecContext avctx)
static

Definition at line 442 of file fic.c.

Variable Documentation

const uint8_t fic_qmat_hq[64]
static
Initial value:
= {
1, 2, 2, 2, 3, 3, 3, 4,
2, 2, 2, 3, 3, 3, 4, 4,
2, 2, 3, 3, 3, 4, 4, 4,
2, 2, 3, 3, 3, 4, 4, 5,
2, 3, 3, 3, 4, 4, 5, 6,
3, 3, 3, 4, 4, 5, 6, 7,
3, 3, 3, 4, 4, 5, 7, 7,
3, 3, 4, 4, 5, 7, 7, 7,
}

Definition at line 60 of file fic.c.

Referenced by fic_decode_frame().

const uint8_t fic_qmat_lq[64]
static
Initial value:
= {
1, 5, 6, 7, 8, 9, 9, 11,
5, 5, 7, 8, 9, 9, 11, 12,
6, 7, 8, 9, 9, 11, 11, 12,
7, 7, 8, 9, 9, 11, 12, 13,
7, 8, 9, 9, 10, 11, 13, 16,
8, 9, 9, 10, 11, 13, 16, 19,
8, 9, 9, 11, 12, 15, 18, 23,
9, 9, 11, 12, 15, 18, 23, 27
}

Definition at line 71 of file fic.c.

Referenced by fic_decode_frame().

const uint8_t fic_header[7] = { 0, 0, 1, 'F', 'I', 'C', 'V' }
static

Definition at line 82 of file fic.c.

Referenced by fic_decode_frame().

const AVOption options[]
static
Initial value:
= {
{ "skip_cursor", "skip the cursor", 0x42, AV_OPT_TYPE_BOOL, {.i64 = 0 }, 0, 1, AV_OPT_FLAG_DECODING_PARAM | AV_OPT_FLAG_VIDEO_PARAM },
{ NULL },
}
#define NULL
Definition: coverity.c:32
#define AV_OPT_FLAG_VIDEO_PARAM
Definition: opt.h:282
#define AV_OPT_FLAG_DECODING_PARAM
a generic parameter which can be set by the user for demuxing or decoding
Definition: opt.h:277

Definition at line 461 of file fic.c.

const AVClass fic_decoder_class
static
Initial value:
= {
.class_name = "FIC encoder",
.item_name = av_default_item_name,
.option = options,
}
#define LIBAVUTIL_VERSION_INT
Definition: version.h:86
av_default_item_name
static const AVOption options[]
Definition: fic.c:461

Definition at line 466 of file fic.c.

AVCodec ff_fic_decoder
Initial value:
= {
.name = "fic",
.long_name = NULL_IF_CONFIG_SMALL("Mirillis FIC"),
.priv_data_size = sizeof(FICContext),
.close = fic_decode_close,
.priv_class = &fic_decoder_class,
}
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
static void decode(AVCodecContext *dec_ctx, AVPacket *pkt, AVFrame *frame, FILE *outfile)
Definition: decode_audio.c:42
static av_cold int fic_decode_close(AVCodecContext *avctx)
Definition: fic.c:431
Definition: fic.c:40
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:179
static const AVClass fic_decoder_class
Definition: fic.c:466
static av_cold int fic_decode_init(AVCodecContext *avctx)
Definition: fic.c:442
#define AV_CODEC_CAP_SLICE_THREADS
Codec supports slice-based (or partition-based) multithreading.
Definition: avcodec.h:1069
static int fic_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: fic.c:262
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:1002

Definition at line 473 of file fic.c.