|
FFmpeg
|
#include "libavutil/common.h"#include "libavutil/mem_internal.h"#include "libavutil/opt.h"#include "avcodec.h"#include "codec_internal.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 |
| #define | CURSOR_OFFSET 59 |
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, AVFrame *rframe, 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 |
| const FFCodec | ff_fic_decoder |
|
static |
Definition at line 89 of file fic.c.
Referenced by fic_idct_put().
|
static |
Definition at line 113 of file fic.c.
Referenced by fic_decode_block().
|
static |
Definition at line 139 of file fic.c.
Referenced by fic_decode_slice().
|
static |
Definition at line 172 of file fic.c.
Referenced by fic_decode_frame().
|
static |
Definition at line 207 of file fic.c.
Referenced by fic_draw_cursor().
|
static |
Definition at line 216 of file fic.c.
Referenced by fic_decode_frame().
|
static |
|
static |
|
static |
|
static |
Definition at line 62 of file fic.c.
Referenced by fic_decode_frame().
|
static |
Definition at line 73 of file fic.c.
Referenced by fic_decode_frame().
Definition at line 84 of file fic.c.
Referenced by fic_decode_frame().
|
static |
|
static |
| const FFCodec ff_fic_decoder |
1.8.17