FFmpeg
|
#include "avcodec.h"
#include "blockdsp.h"
#include "codec_internal.h"
#include "copy_block.h"
#include "decode.h"
#include "get_bits.h"
#include "idctdsp.h"
#include "jpegquanttables.h"
#include "jpegtables.h"
#include "leaddata.h"
#include "libavutil/mem_internal.h"
#include "libavutil/thread.h"
Go to the source code of this file.
Data Structures | |
struct | LeadContext |
Macros | |
#define | LUMA_DC_BITS 9 |
#define | CHROMA_DC_BITS 11 |
#define | LUMA_AC_BITS 10 |
#define | CHROMA_AC_BITS 10 |
Functions | |
static av_cold void | lead_init_static_data (void) |
static av_cold int | lead_decode_init (AVCodecContext *avctx) |
static void | calc_dequant (uint16_t *dequant, const uint8_t *quant_tbl, int q) |
static int | decode_block (LeadContext *s, GetBitContext *gb, const VLCElem *dc_table, int dc_bits, const VLCElem *ac_table, int ac_bits, int16_t *dc_pred, const uint16_t *dequant, uint8_t *dst, int stride) |
static int | lead_decode_frame (AVCodecContext *avctx, AVFrame *frame, int *got_frame, AVPacket *avpkt) |
static av_cold int | lead_decode_end (AVCodecContext *avctx) |
Variables | |
static VLCElem | luma_dc_vlc [1<< LUMA_DC_BITS] |
static VLCElem | chroma_dc_vlc [1<< CHROMA_DC_BITS] |
static VLCElem | luma_ac_vlc [1160] |
static VLCElem | chroma_ac_vlc [1160] |
const FFCodec | ff_lead_decoder |
|
static |
Definition at line 46 of file leaddec.c.
Referenced by lead_decode_init().
|
static |
|
static |
Definition at line 91 of file leaddec.c.
Referenced by lead_decode_frame().
|
static |
Definition at line 97 of file leaddec.c.
Referenced by lead_decode_frame().
|
static |
|
static |
|
static |
Definition at line 41 of file leaddec.c.
Referenced by lead_decode_frame(), and lead_init_static_data().
|
static |
Definition at line 42 of file leaddec.c.
Referenced by lead_decode_frame(), and lead_init_static_data().
|
static |
Definition at line 43 of file leaddec.c.
Referenced by lead_decode_frame(), and lead_init_static_data().
|
static |
Definition at line 44 of file leaddec.c.
Referenced by lead_decode_frame(), and lead_init_static_data().
const FFCodec ff_lead_decoder |