|
FFmpeg
|
#include <stdint.h>#include "libavutil/intmath.h"#include "libavutil/mem.h"#include "avcodec.h"#include "bytestream.h"#include "codec_internal.h"#include "decode.h"#include "get_bits.h"#include "thread.h"#include "unary.h"Go to the source code of this file.
Data Structures | |
| struct | SubBand |
| struct | PixletContext |
Macros | |
| #define | NB_LEVELS 4 |
| #define | PIXLET_MAGIC 0xDEADBEEF |
| #define | H 0 |
| #define | V 1 |
Functions | |
| static av_cold int | pixlet_init (AVCodecContext *avctx) |
| static void | free_buffers (AVCodecContext *avctx) |
| static av_cold int | pixlet_close (AVCodecContext *avctx) |
| static int | init_decoder (AVCodecContext *avctx) |
| static int | read_low_coeffs (AVCodecContext *avctx, int16_t *dst, int size, int width, ptrdiff_t stride) |
| static int | read_high_coeffs (AVCodecContext *avctx, const uint8_t *src, int16_t *dst, int size, int c, int a, int d, int width, ptrdiff_t stride) |
| static int | read_highpass (AVCodecContext *avctx, const uint8_t *ptr, int plane, AVFrame *frame) |
| static void | lowpass_prediction (int16_t *dst, int16_t *pred, int width, int height, ptrdiff_t stride) |
| static void | filterfn (int16_t *dest, int16_t *tmp, unsigned size, int64_t scale) |
| static void | reconstruction (AVCodecContext *avctx, int16_t *dest, unsigned width, unsigned height, ptrdiff_t stride, int64_t *scaling_h, int64_t *scaling_v) |
| static void | build_luma_lut (AVCodecContext *avctx, int depth) |
| static void | postprocess_luma (AVCodecContext *avctx, AVFrame *frame, int w, int h, int depth) |
| static void | postprocess_chroma (AVFrame *frame, int w, int h, int depth) |
| static int | decode_plane (AVCodecContext *avctx, int plane, const AVPacket *avpkt, AVFrame *frame) |
| static int | pixlet_decode_frame (AVCodecContext *avctx, AVFrame *p, int *got_frame, AVPacket *avpkt) |
Variables | |
| const FFCodec | ff_pixlet_decoder |
| #define NB_LEVELS 4 |
Definition at line 35 of file pixlet.c.
Referenced by av_log_default_callback(), init_decoder(), pixlet_decode_frame(), and reconstruction().
| #define PIXLET_MAGIC 0xDEADBEEF |
Definition at line 37 of file pixlet.c.
Referenced by read_highpass().
| #define H 0 |
Definition at line 39 of file pixlet.c.
Referenced by addroi_config_input(), addroi_filter_frame(), check_loopfilter(), check_multiply3x3(), check_rgb2yuv(), check_yuv2rgb(), check_yuv2yuv(), decode_plane(), epx2_slice(), epx3_slice(), filter_channel(), filter_color(), filter_color2(), filter_frame(), filter_mono(), filter_plane_cols(), filter_plane_rows(), for(), for(), frame_header(), idct(), idct10(), idct_msa(), if(), init_demo(), loop_filter(), pred8x16_plane(), pred8x8_plane(), qrencode_config_input(), qrencodesrc_config_props(), and randomize_loopfilter_buffers().
|
static |
|
static |
Definition at line 72 of file pixlet.c.
Referenced by pixlet_close(), and pixlet_decode_frame().
|
static |
|
static |
Definition at line 90 of file pixlet.c.
Referenced by pixlet_decode_frame().
|
static |
Definition at line 125 of file pixlet.c.
Referenced by decode_plane().
|
static |
Definition at line 200 of file pixlet.c.
Referenced by read_highpass().
|
static |
Definition at line 315 of file pixlet.c.
Referenced by decode_plane().
|
static |
Definition at line 358 of file pixlet.c.
Referenced by decode_plane().
|
static |
Definition at line 378 of file pixlet.c.
Referenced by reconstruction().
|
static |
Definition at line 423 of file pixlet.c.
Referenced by decode_plane().
|
static |
Definition at line 466 of file pixlet.c.
Referenced by pixlet_decode_frame().
|
static |
Definition at line 479 of file pixlet.c.
Referenced by pixlet_decode_frame().
|
static |
Definition at line 503 of file pixlet.c.
Referenced by pixlet_decode_frame().
|
static |
Definition at line 527 of file pixlet.c.
Referenced by pixlet_decode_frame().
|
static |
| const FFCodec ff_pixlet_decoder |