FFmpeg
|
#include "libavutil/intreadwrite.h"
#include "libavutil/mem.h"
#include "avcodec.h"
#include "bytestream.h"
#include "codec_internal.h"
#include "decode.h"
#include "get_bits.h"
Go to the source code of this file.
Data Structures | |
struct | CDXLVideoContext |
Macros | |
#define | UNCHECKED_BITSTREAM_READER 1 |
#define | BIT_PLANAR 0x00 |
#define | CHUNKY 0x20 |
#define | BYTE_PLANAR 0x40 |
#define | BIT_LINE 0x80 |
#define | BYTE_LINE 0xC0 |
Functions | |
static av_cold int | cdxl_decode_init (AVCodecContext *avctx) |
static void | import_palette (CDXLVideoContext *c, uint32_t *new_palette) |
static void | bitplanar2chunky (CDXLVideoContext *c, int linesize, uint8_t *out) |
static void | bitline2chunky (CDXLVideoContext *c, int linesize, uint8_t *out) |
static void | chunky2chunky (CDXLVideoContext *c, int linesize, uint8_t *out) |
static void | import_format (CDXLVideoContext *c, ptrdiff_t linesize, uint8_t *out) |
static void | cdxl_decode_rgb (CDXLVideoContext *c, AVFrame *frame) |
static void | cdxl_decode_raw (CDXLVideoContext *c, AVFrame *frame) |
static void | cdxl_decode_ham6 (CDXLVideoContext *c, AVFrame *frame) |
static void | cdxl_decode_ham8 (CDXLVideoContext *c, AVFrame *frame) |
static int | cdxl_decode_frame (AVCodecContext *avctx, AVFrame *p, int *got_frame, AVPacket *pkt) |
static av_cold int | cdxl_decode_end (AVCodecContext *avctx) |
Variables | |
const FFCodec | ff_cdxl_decoder |
Commodore CDXL video decoder
Definition in file cdxl.c.
|
static |
|
static |
Definition at line 68 of file cdxl.c.
Referenced by cdxl_decode_ham6(), cdxl_decode_ham8(), and cdxl_decode_rgb().
|
static |
Definition at line 86 of file cdxl.c.
Referenced by import_format().
|
static |
Definition at line 102 of file cdxl.c.
Referenced by import_format().
|
static |
Definition at line 118 of file cdxl.c.
Referenced by import_format().
|
static |
Definition at line 129 of file cdxl.c.
Referenced by cdxl_decode_ham6(), cdxl_decode_ham8(), cdxl_decode_raw(), and cdxl_decode_rgb().
|
static |
Definition at line 147 of file cdxl.c.
Referenced by cdxl_decode_frame().
|
static |
Definition at line 156 of file cdxl.c.
Referenced by cdxl_decode_frame().
|
static |
Definition at line 161 of file cdxl.c.
Referenced by cdxl_decode_frame().
|
static |
Definition at line 204 of file cdxl.c.
Referenced by cdxl_decode_frame().
|
static |
|
static |
const FFCodec ff_cdxl_decoder |