#include "libavutil/mem.h"
#include "avcodec.h"
#include "get_bits.h"
#include "codec_internal.h"
#include "decode.h"
Go to the source code of this file.
|
static av_cold int | tgv_decode_init (AVCodecContext *avctx) |
|
static int | unpack (const uint8_t *src, const uint8_t *src_end, uint8_t *dst, int width, int height) |
| Unpack buffer. More...
|
|
static int | tgv_decode_inter (TgvContext *s, AVFrame *frame, const uint8_t *buf, const uint8_t *buf_end) |
| Decode inter-frame. More...
|
|
static int | tgv_decode_frame (AVCodecContext *avctx, AVFrame *frame, int *got_frame, AVPacket *avpkt) |
|
static av_cold int | tgv_decode_end (AVCodecContext *avctx) |
|
◆ BITSTREAM_READER_LE
#define BITSTREAM_READER_LE |
◆ EA_PREAMBLE_SIZE
#define EA_PREAMBLE_SIZE 8 |
◆ kVGT_TAG
#define kVGT_TAG MKTAG('k', 'V', 'G', 'T') |
◆ tgv_decode_init()
◆ unpack()
static int unpack |
( |
const uint8_t * |
src, |
|
|
const uint8_t * |
src_end, |
|
|
uint8_t * |
dst, |
|
|
int |
width, |
|
|
int |
height |
|
) |
| |
|
static |
Unpack buffer.
- Returns
- 0 on success, -1 on critical buffer underflow
Definition at line 73 of file eatgv.c.
Referenced by tgv_decode_frame().
◆ tgv_decode_inter()
static int tgv_decode_inter |
( |
TgvContext * |
s, |
|
|
AVFrame * |
frame, |
|
|
const uint8_t * |
buf, |
|
|
const uint8_t * |
buf_end |
|
) |
| |
|
static |
Decode inter-frame.
- Returns
- 0 on success, -1 on critical buffer underflow
Definition at line 148 of file eatgv.c.
Referenced by tgv_decode_frame().
◆ tgv_decode_frame()
◆ tgv_decode_end()
◆ ff_eatgv_decoder
Initial value:
Definition at line 359 of file eatgv.c.