FFmpeg
|
#include <inttypes.h>
#include <stdlib.h>
#include "libavutil/intreadwrite.h"
#include "libavutil/pixdesc.h"
#include "avcodec.h"
#include "bswapdsp.h"
#include "bytestream.h"
#include "codec_internal.h"
#include "get_bits.h"
#include "lossless_videodsp.h"
#include "thread.h"
#include "utvideo.h"
#include "utvideodsp.h"
Go to the source code of this file.
Data Structures | |
struct | UtvideoContext |
struct | HuffEntry |
Macros | |
#define | CACHED_BITSTREAM_READER !ARCH_X86_32 |
#define | UNCHECKED_BITSTREAM_READER 1 |
#define | VLC_BITS 11 |
#define | READ_PLANE(b, end) |
Functions | |
static int | build_huff (UtvideoContext *c, const uint8_t *src, VLC *vlc, VLC_MULTI *multi, int *fsym, unsigned nb_elems) |
static int | decode_plane10 (UtvideoContext *c, int plane_no, uint16_t *dst, ptrdiff_t stride, int width, int height, const uint8_t *src, const uint8_t *huff, int use_pred) |
static int | compute_cmask (int plane_no, int interlaced, enum AVPixelFormat pix_fmt) |
static int | decode_plane (UtvideoContext *c, int plane_no, uint8_t *dst, ptrdiff_t stride, int width, int height, const uint8_t *src, int use_pred) |
static void | restore_median_planar (UtvideoContext *c, uint8_t *src, ptrdiff_t stride, int width, int height, int slices, int rmode) |
static void | restore_median_planar_il (UtvideoContext *c, uint8_t *src, ptrdiff_t stride, int width, int height, int slices, int rmode) |
static void | restore_gradient_planar (UtvideoContext *c, uint8_t *src, ptrdiff_t stride, int width, int height, int slices, int rmode) |
static void | restore_gradient_planar_il (UtvideoContext *c, uint8_t *src, ptrdiff_t stride, int width, int height, int slices, int rmode) |
static int | decode_frame (AVCodecContext *avctx, AVFrame *frame, int *got_frame, AVPacket *avpkt) |
static av_cold int | decode_init (AVCodecContext *avctx) |
static av_cold int | decode_end (AVCodecContext *avctx) |
Variables | |
const FFCodec | ff_utvideo_decoder |
Ut Video decoder
Definition in file utvideodec.c.
#define CACHED_BITSTREAM_READER !ARCH_X86_32 |
Definition at line 30 of file utvideodec.c.
#define UNCHECKED_BITSTREAM_READER 1 |
Definition at line 31 of file utvideodec.c.
#define VLC_BITS 11 |
#define READ_PLANE | ( | b, | |
end | |||
) |
Definition at line 117 of file utvideodec.c.
|
static |
Definition at line 75 of file utvideodec.c.
Referenced by decode_plane(), and decode_plane10().
|
static |
Definition at line 141 of file utvideodec.c.
Referenced by decode_frame().
|
static |
Definition at line 228 of file utvideodec.c.
Referenced by decode_plane().
|
static |
Definition at line 238 of file utvideodec.c.
Referenced by decode_frame().
|
static |
Definition at line 377 of file utvideodec.c.
Referenced by decode_frame().
|
static |
Definition at line 429 of file utvideodec.c.
Referenced by decode_frame().
|
static |
Definition at line 484 of file utvideodec.c.
Referenced by decode_frame().
|
static |
Definition at line 525 of file utvideodec.c.
Referenced by decode_frame().
|
static |
Definition at line 580 of file utvideodec.c.
|
static |
Definition at line 903 of file utvideodec.c.
|
static |
Definition at line 1069 of file utvideodec.c.
const FFCodec ff_utvideo_decoder |
Definition at line 1079 of file utvideodec.c.