|
FFmpeg
|
#include "avcodec.h"#include "get_bits.h"#include "dsputil.h"#include "internal.h"#include "motionpixels_tablegen.h"Go to the source code of this file.
Data Structures | |
| struct | HuffCode |
| struct | MotionPixelsContext |
Macros | |
| #define | MAX_HUFF_CODES 16 |
Functions | |
| static av_cold int | mp_decode_end (AVCodecContext *avctx) |
| static av_cold int | mp_decode_init (AVCodecContext *avctx) |
| static void | mp_read_changes_map (MotionPixelsContext *mp, GetBitContext *gb, int count, int bits_len, int read_color) |
| static int | mp_get_code (MotionPixelsContext *mp, GetBitContext *gb, int size, int code) |
| static int | mp_read_codes_table (MotionPixelsContext *mp, GetBitContext *gb) |
| static int | mp_gradient (MotionPixelsContext *mp, int component, int v) |
| static YuvPixel | mp_get_yuv_from_rgb (MotionPixelsContext *mp, int x, int y) |
| static void | mp_set_rgb_from_yuv (MotionPixelsContext *mp, int x, int y, const YuvPixel *p) |
| static int | mp_get_vlc (MotionPixelsContext *mp, GetBitContext *gb) |
| static void | mp_decode_line (MotionPixelsContext *mp, GetBitContext *gb, int y) |
| static void | mp_decode_frame_helper (MotionPixelsContext *mp, GetBitContext *gb) |
| static int | mp_decode_frame (AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt) |
Variables | |
| AVCodec | ff_motionpixels_decoder |
| #define MAX_HUFF_CODES 16 |
Definition at line 27 of file motionpixels.c.
Referenced by mp_get_code().
|
static |
Definition at line 53 of file motionpixels.c.
Referenced by mp_decode_init().
|
static |
Definition at line 66 of file motionpixels.c.
|
static |
Definition at line 101 of file motionpixels.c.
Referenced by mp_decode_frame().
|
static |
Definition at line 130 of file motionpixels.c.
Referenced by mp_read_codes_table().
|
static |
Definition at line 152 of file motionpixels.c.
Referenced by mp_decode_frame().
|
static |
Definition at line 174 of file motionpixels.c.
Referenced by mp_decode_frame_helper(), and mp_decode_line().
|
static |
Definition at line 183 of file motionpixels.c.
Referenced by mp_decode_frame_helper(), and mp_decode_line().
|
static |
Definition at line 191 of file motionpixels.c.
Referenced by mp_decode_frame_helper(), and mp_decode_line().
|
static |
Definition at line 199 of file motionpixels.c.
Referenced by mp_decode_frame_helper(), and mp_decode_line().
|
static |
Definition at line 207 of file motionpixels.c.
Referenced by mp_decode_frame_helper().
|
static |
Definition at line 254 of file motionpixels.c.
Referenced by mp_decode_frame().
|
static |
Definition at line 283 of file motionpixels.c.
| AVCodec ff_motionpixels_decoder |
Definition at line 345 of file motionpixels.c.
1.8.2