#include "libavutil/thread.h"
#include "config.h"
#include "avcodec.h"
#include "get_bits.h"
#include "bswapdsp.h"
#include "codec_internal.h"
#include "decode.h"
#include "motionpixels_tablegen.h"
Go to the source code of this file.
|
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) |
|
static int | mp_read_codes_table (MotionPixelsContext *mp, GetBitContext *gb) |
|
static av_always_inline 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 av_always_inline 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, AVFrame *rframe, int *got_frame, AVPacket *avpkt) |
|
◆ MAX_HUFF_CODES
#define MAX_HUFF_CODES 16 |
◆ mp_decode_end()
◆ mp_decode_init()
◆ mp_read_changes_map()
◆ mp_get_code()
◆ mp_read_codes_table()
◆ mp_gradient()
◆ mp_get_yuv_from_rgb()
◆ mp_set_rgb_from_yuv()
◆ mp_get_vlc()
◆ mp_decode_line()
◆ mp_decode_frame_helper()
◆ mp_decode_frame()
◆ ff_motionpixels_decoder
const FFCodec ff_motionpixels_decoder |
Initial value:= {
.p.name = "motionpixels",
}
Definition at line 348 of file motionpixels.c.