FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Functions | Variables
utvideodec.c File Reference

Ut Video decoder. More...

#include <inttypes.h>
#include <stdlib.h>
#include "libavutil/intreadwrite.h"
#include "avcodec.h"
#include "bswapdsp.h"
#include "bytestream.h"
#include "get_bits.h"
#include "thread.h"
#include "utvideo.h"

Go to the source code of this file.

Functions

static int build_huff10 (const uint8_t *src, VLC *vlc, int *fsym)
 
static int build_huff (const uint8_t *src, VLC *vlc, int *fsym)
 
static int decode_plane10 (UtvideoContext *c, int plane_no, uint16_t *dst, int step, int stride, int width, int height, const uint8_t *src, const uint8_t *huff, int use_pred)
 
static int decode_plane (UtvideoContext *c, int plane_no, uint8_t *dst, int step, int stride, int width, int height, const uint8_t *src, int use_pred)
 
static void restore_rgb_planes (uint8_t *src, int step, int stride, int width, int height)
 
static void restore_rgb_planes10 (AVFrame *frame, int width, int height)
 
static void restore_median (uint8_t *src, int step, int stride, int width, int height, int slices, int rmode)
 
static void restore_median_il (uint8_t *src, int step, int stride, int width, int height, int slices, int rmode)
 
static int decode_frame (AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
 
static av_cold int decode_init (AVCodecContext *avctx)
 
static av_cold int decode_end (AVCodecContext *avctx)
 

Variables

AVCodec ff_utvideo_decoder
 

Detailed Description

Ut Video decoder.

Definition in file utvideodec.c.

Function Documentation

static int build_huff10 ( const uint8_t src,
VLC vlc,
int *  fsym 
)
static

Definition at line 38 of file utvideodec.c.

Referenced by decode_plane10().

static int build_huff ( const uint8_t src,
VLC vlc,
int *  fsym 
)
static

Definition at line 82 of file utvideodec.c.

Referenced by decode_plane().

static int decode_plane10 ( UtvideoContext c,
int  plane_no,
uint16_t *  dst,
int  step,
int  stride,
int  width,
int  height,
const uint8_t src,
const uint8_t huff,
int  use_pred 
)
static

Definition at line 125 of file utvideodec.c.

Referenced by decode_frame().

static int decode_plane ( UtvideoContext c,
int  plane_no,
uint8_t dst,
int  step,
int  stride,
int  width,
int  height,
const uint8_t src,
int  use_pred 
)
static

Definition at line 230 of file utvideodec.c.

Referenced by decode_frame().

static void restore_rgb_planes ( uint8_t src,
int  step,
int  stride,
int  width,
int  height 
)
static

Definition at line 335 of file utvideodec.c.

Referenced by decode_frame().

static void restore_rgb_planes10 ( AVFrame frame,
int  width,
int  height 
)
static

Definition at line 353 of file utvideodec.c.

Referenced by decode_frame().

static void restore_median ( uint8_t src,
int  step,
int  stride,
int  width,
int  height,
int  slices,
int  rmode 
)
static

Definition at line 375 of file utvideodec.c.

Referenced by decode_frame().

static void restore_median_il ( uint8_t src,
int  step,
int  stride,
int  width,
int  height,
int  slices,
int  rmode 
)
static

Definition at line 431 of file utvideodec.c.

Referenced by decode_frame().

static int decode_frame ( AVCodecContext avctx,
void data,
int *  got_frame,
AVPacket avpkt 
)
static

Definition at line 501 of file utvideodec.c.

static av_cold int decode_init ( AVCodecContext avctx)
static

Definition at line 700 of file utvideodec.c.

static av_cold int decode_end ( AVCodecContext avctx)
static

Definition at line 791 of file utvideodec.c.

Variable Documentation

AVCodec ff_utvideo_decoder
Initial value:
= {
.name = "utvideo",
.long_name = NULL_IF_CONFIG_SMALL("Ut Video"),
.priv_data_size = sizeof(UtvideoContext),
.close = decode_end,
}
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
static av_cold int decode_end(AVCodecContext *avctx)
Definition: utvideodec.c:791
static av_cold int decode_init(AVCodecContext *avctx)
Definition: utvideodec.c:700
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:176
#define AV_CODEC_CAP_FRAME_THREADS
Codec supports frame-level multithreading.
Definition: avcodec.h:1019
static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: utvideodec.c:501
static int decode(AVCodecContext *avctx, void *data, int *got_sub, AVPacket *avpkt)
Definition: ccaption_dec.c:722
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:956

Definition at line 800 of file utvideodec.c.