FFmpeg
|
#include "libavutil/common.h"
#include "avcodec.h"
#include "internal.h"
#include "dsputil.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 int | fic_decode_block (FICContext *ctx, GetBitContext *gb, uint8_t *dst, int stride, int16_t *block) |
static int | fic_decode_slice (AVCodecContext *avctx, void *tdata) |
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' } |
AVCodec | ff_fic_decoder |
#define FIC_HEADER_SIZE 27 |
Definition at line 81 of file fic.c.
Referenced by fic_decode_frame().
|
static |
Definition at line 83 of file fic.c.
Referenced by fic_decode_slice().
|
static |
Definition at line 111 of file fic.c.
Referenced by fic_decode_frame().
|
static |
|
static |
|
static |
|
static |
Definition at line 57 of file fic.c.
Referenced by fic_decode_frame().
|
static |
Definition at line 68 of file fic.c.
Referenced by fic_decode_frame().
Definition at line 79 of file fic.c.
Referenced by fic_decode_frame().
AVCodec ff_fic_decoder |