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 "thread.h"
#include "utvideo.h"
Go to the source code of this file.
Data Structures | |
struct | HuffEntry |
Macros | |
#define | CACHED_BITSTREAM_READER !ARCH_X86_32 |
#define | UNCHECKED_BITSTREAM_READER 1 |
#define | VLC_BITS 11 |
Functions | |
static int | build_huff (UtvideoContext *c, const uint8_t *src, VLC *vlc, 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 |
|
static |
Definition at line 48 of file utvideodec.c.
Referenced by decode_plane(), and decode_plane10().
|
static |
Definition at line 90 of file utvideodec.c.
Referenced by decode_frame().
|
static |
Definition at line 193 of file utvideodec.c.
Referenced by decode_plane().
|
static |
Definition at line 203 of file utvideodec.c.
Referenced by decode_frame().
|
static |
Definition at line 357 of file utvideodec.c.
Referenced by decode_frame().
|
static |
Definition at line 409 of file utvideodec.c.
Referenced by decode_frame().
|
static |
Definition at line 464 of file utvideodec.c.
Referenced by decode_frame().
|
static |
Definition at line 505 of file utvideodec.c.
Referenced by decode_frame().
|
static |
Definition at line 560 of file utvideodec.c.
|
static |
Definition at line 882 of file utvideodec.c.
|
static |
Definition at line 1044 of file utvideodec.c.
const FFCodec ff_utvideo_decoder |
Definition at line 1053 of file utvideodec.c.