FFmpeg
|
DXA Video decoder. More...
#include <stdio.h>
#include <stdlib.h>
#include "libavutil/common.h"
#include "libavutil/intreadwrite.h"
#include "bytestream.h"
#include "avcodec.h"
#include "internal.h"
#include <zlib.h>
Go to the source code of this file.
Data Structures | |
struct | DxaDecContext |
Macros | |
#define | DECOMP_BUF_PADDING 16 |
Functions | |
static int | decode_13 (AVCodecContext *avctx, DxaDecContext *c, uint8_t *dst, int stride, uint8_t *src, int srcsize, uint8_t *ref) |
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 | |
static const int | shift1 [6] = { 0, 8, 8, 8, 4, 4 } |
static const int | shift2 [6] = { 0, 0, 8, 4, 0, 4 } |
AVCodec | ff_dxa_decoder |
DXA Video decoder.
Definition in file dxa.c.
#define DECOMP_BUF_PADDING 16 |
Definition at line 45 of file dxa.c.
Referenced by decode_frame(), and decode_init().
|
static |
Definition at line 53 of file dxa.c.
Referenced by decode_frame().
|
static |
|
static |
|
static |
|
static |
Definition at line 50 of file dxa.c.
Referenced by decode_13(), dnxhd_decode_macroblock(), do_plc(), and fixed_sqrt().
|
static |
Definition at line 51 of file dxa.c.
Referenced by decode_13(), do_plc(), fixed_sqrt(), FUNC(), predictor_decode_mono_3800(), predictor_decode_stereo_3800(), and sbr_hf_assemble().
AVCodec ff_dxa_decoder |