FFmpeg
|
#include <stdlib.h>
#include <string.h>
#include "libavutil/pixdesc.h"
#include "libavutil/qsort.h"
#include "avcodec.h"
#include "bytestream.h"
#include "get_bits.h"
#include "huffyuvdsp.h"
#include "internal.h"
#include "lossless_videodsp.h"
#include "thread.h"
Go to the source code of this file.
Data Structures | |
struct | Slice |
struct | HuffEntry |
struct | MagicYUVContext |
Enumerations | |
enum | Prediction { LEFT = 1, GRADIENT, MEDIAN } |
Functions | |
static int | huff_cmp_len (const void *a, const void *b) |
static int | huff_cmp_len10 (const void *a, const void *b) |
static int | huff_build10 (VLC *vlc, uint8_t *len) |
static int | huff_build (VLC *vlc, uint8_t *len) |
static void | magicyuv_median_pred10 (uint16_t *dst, const uint16_t *src1, const uint16_t *diff, intptr_t w, int *left, int *left_top) |
static int | magy_decode_slice10 (AVCodecContext *avctx, void *tdata, int j, int threadnr) |
static int | magy_decode_slice (AVCodecContext *avctx, void *tdata, int j, int threadnr) |
static int | build_huffman (AVCodecContext *avctx, GetBitContext *gbit, int max) |
static int | magy_decode_frame (AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt) |
static av_cold int | magy_decode_init (AVCodecContext *avctx) |
static av_cold int | magy_decode_end (AVCodecContext *avctx) |
Variables | |
AVCodec | ff_magicyuv_decoder |
enum Prediction |
Enumerator | |
---|---|
LEFT | |
GRADIENT | |
MEDIAN |
Definition at line 41 of file magicyuv.c.
Definition at line 76 of file magicyuv.c.
Referenced by huff_build().
Definition at line 82 of file magicyuv.c.
Referenced by huff_build10().
Definition at line 88 of file magicyuv.c.
Referenced by magy_decode_frame().
Definition at line 120 of file magicyuv.c.
Referenced by magy_decode_frame().
|
static |
Definition at line 152 of file magicyuv.c.
Referenced by magy_decode_slice10().
|
static |
Definition at line 173 of file magicyuv.c.
Referenced by magy_decode_frame().
|
static |
Definition at line 304 of file magicyuv.c.
Referenced by magy_decode_frame().
|
static |
Definition at line 434 of file magicyuv.c.
Referenced by magy_decode_frame().
|
static |
Definition at line 473 of file magicyuv.c.
|
static |
Definition at line 701 of file magicyuv.c.
|
static |
Definition at line 708 of file magicyuv.c.
AVCodec ff_magicyuv_decoder |
Definition at line 722 of file magicyuv.c.