FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Data Structures | Enumerations | Functions | Variables
magicyuv.c File Reference
#include <stdlib.h>
#include <string.h>
#include "libavutil/pixdesc.h"
#include "libavutil/qsort.h"
#include "avcodec.h"
#include "bytestream.h"
#include "get_bits.h"
#include "huffyuvdsp.h"
#include "internal.h"
#include "thread.h"

Go to the source code of this file.

Data Structures

struct  Slice
 
struct  HuffEntry
 
struct  MagicYUVContext
 

Enumerations

enum  Prediction { LEFT = 1, GRADIENT, MEDIAN }
 

Functions

static int huff_cmp_len (const void *a, const void *b)
 
static int huff_build (VLC *vlc, uint8_t *len)
 
static int magy_decode_slice (AVCodecContext *avctx, void *tdata, int j, int threadnr)
 
static int magy_decode_frame (AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
 
static av_cold int magy_decode_init (AVCodecContext *avctx)
 
static av_cold int magy_decode_end (AVCodecContext *avctx)
 

Variables

AVCodec ff_magicyuv_decoder
 

Enumeration Type Documentation

enum Prediction
Enumerator
LEFT 
GRADIENT 
MEDIAN 

Definition at line 40 of file magicyuv.c.

Function Documentation

static int huff_cmp_len ( const void a,
const void b 
)
static

Definition at line 69 of file magicyuv.c.

Referenced by huff_build().

static int huff_build ( VLC vlc,
uint8_t len 
)
static

Definition at line 75 of file magicyuv.c.

Referenced by magy_decode_frame().

static int magy_decode_slice ( AVCodecContext avctx,
void tdata,
int  j,
int  threadnr 
)
static

Definition at line 105 of file magicyuv.c.

Referenced by magy_decode_frame().

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

Definition at line 235 of file magicyuv.c.

static av_cold int magy_decode_init ( AVCodecContext avctx)
static

Definition at line 446 of file magicyuv.c.

static av_cold int magy_decode_end ( AVCodecContext avctx)
static

Definition at line 453 of file magicyuv.c.

Variable Documentation

AVCodec ff_magicyuv_decoder
Initial value:
= {
.name = "magicyuv",
.long_name = NULL_IF_CONFIG_SMALL("MagicYUV video"),
.priv_data_size = sizeof(MagicYUVContext),
.init_thread_copy = ONLY_IF_THREADS_ENABLED(magy_init_thread_copy),
.close = magy_decode_end,
.decode = magy_decode_frame,
.capabilities = AV_CODEC_CAP_DR1 |
.caps_internal = FF_CODEC_CAP_INIT_THREADSAFE,
}
static int init_thread_copy(AVCodecContext *avctx)
Definition: tta.c:392
static av_cold int init(AVCodecContext *avctx)
Definition: avrndec.c:35
#define FF_CODEC_CAP_INIT_THREADSAFE
The codec does not modify any global variables in the init function, allowing to call the init functi...
Definition: internal.h:40
#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:1022
#define ONLY_IF_THREADS_ENABLED(x)
Define a function with only the non-default version specified.
Definition: internal.h:215
#define AV_CODEC_CAP_SLICE_THREADS
Codec supports slice-based (or partition-based) multithreading.
Definition: avcodec.h:1026
static av_cold int magy_decode_init(AVCodecContext *avctx)
Definition: magicyuv.c:446
static int magy_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
Definition: magicyuv.c:235
static av_cold int magy_decode_end(AVCodecContext *avctx)
Definition: magicyuv.c:453
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:959

Definition at line 467 of file magicyuv.c.