28#define UNCHECKED_BITSTREAM_READER 1
38#define BIT_PLANAR 0x00
40#define BYTE_PLANAR 0x40
62 c->new_video_size = 0;
71 for (
int i = 0;
i <
c->palette_size / 2;
i++) {
73 unsigned r = ((
rgb >> 8) & 0xF) * 0x11;
74 unsigned g = ((
rgb >> 4) & 0xF) * 0x11;
75 unsigned b = (
rgb & 0xF) * 0x11;
76 AV_WN32(&new_palette[
i], (0xFFU << 24) | (
r << 16) | (
g << 8) |
b);
79 for (
int i = 0;
i <
c->palette_size / 3;
i++) {
93 for (plane = 0; plane <
c->bpp; plane++) {
94 for (y = 0; y <
c->avctx->height; y++) {
95 for (x = 0; x <
c->avctx->width; x++)
109 for (y = 0; y <
c->avctx->height; y++) {
110 for (plane = 0; plane <
c->bpp; plane++) {
111 for (x = 0; x <
c->avctx->width; x++)
124 for (y = 0; y <
c->avctx->height; y++) {
131 for (
int y = 0; y <
c->avctx->height; y++)
132 memset(
out + y * linesize, 0,
c->avctx->width);
149 uint32_t *new_palette = (uint32_t *)
frame->data[1];
164 uint32_t new_palette[16],
r,
g,
b;
174 for (y = 0; y < avctx->
height; y++) {
175 r = new_palette[0] & 0xFF0000;
176 g = new_palette[0] & 0xFF00;
177 b = new_palette[0] & 0xFF;
178 for (x = 0; x < avctx->
width; x++) {
184 r = new_palette[
index] & 0xFF0000;
185 g = new_palette[
index] & 0xFF00;
186 b = new_palette[
index] & 0xFF;
207 uint32_t new_palette[64],
r,
g,
b;
217 for (y = 0; y < avctx->
height; y++) {
218 r = new_palette[0] & 0xFF0000;
219 g = new_palette[0] & 0xFF00;
220 b = new_palette[0] & 0xFF;
221 for (x = 0; x < avctx->
width; x++) {
227 r = new_palette[
index] & 0xFF0000;
228 g = new_palette[
index] & 0xFF00;
229 b = new_palette[
index] & 0xFF;
235 r = (
index << 18) | (
r & (3 << 16));
238 g = (
index << 10) | (
g & (3 << 8));
251 int ret,
w,
h, encoding, aligned_width, buf_size =
pkt->size;
252 const uint8_t *buf =
pkt->data;
257 encoding = buf[1] & 7;
258 c->format = buf[1] & 0xE0;
262 c->palette_size =
AV_RB16(&buf[20]);
263 c->palette = buf + 32;
264 c->video =
c->palette +
c->palette_size;
265 c->video_size = buf_size -
c->palette_size - 32;
269 if (
c->type == 1 &&
c->palette_size > 512)
271 if (
c->type == 0 &&
c->palette_size > 768)
273 if (buf_size < c->palette_size + 32)
286 aligned_width = avctx->
width;
288 aligned_width =
FFALIGN(
c->avctx->width, 16);
289 c->padded_bits = aligned_width -
c->avctx->width;
290 if (
c->video_size < aligned_width * avctx->
height * (
int64_t)
c->bpp / 8)
292 if (!encoding &&
c->palette_size &&
c->bpp <= 8 &&
c->format !=
CHUNKY) {
294 }
else if (encoding == 1 && (
c->bpp == 6 ||
c->bpp == 8) &&
c->format !=
CHUNKY) {
295 if (
c->palette_size != (1 << (
c->bpp - 1)))
298 }
else if (!encoding &&
c->bpp == 24 &&
c->format ==
CHUNKY &&
303 encoding,
c->bpp,
c->format);
const FFCodec ff_cdxl_decoder
static av_cold void close(AVCodecParserContext *s)
Libavcodec external API header.
static av_always_inline unsigned int bytestream2_get_buffer(GetByteContext *g, uint8_t *dst, unsigned int size)
static av_always_inline void bytestream2_init(GetByteContext *g, const uint8_t *buf, int buf_size)
#define i(width, name, range_min, range_max)
#define FF_CODEC_DECODE_CB(func)
#define CODEC_LONG_NAME(str)
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
int ff_set_dimensions(AVCodecContext *s, int width, int height)
int(* init)(AVBSFContext *ctx)
bitstream reader API header.
static unsigned int get_bits1(GetBitContext *s)
static void skip_bits(GetBitContext *s, int n)
static int init_get_bits8(GetBitContext *s, const uint8_t *buffer, int byte_size)
Initialize GetBitContext.
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
#define AV_INPUT_BUFFER_PADDING_SIZE
Required number of additionally allocated bytes at the end of the input bitstream for decoding.
void av_fast_padded_malloc(void *ptr, unsigned int *size, size_t min_size)
Same behaviour av_fast_malloc but the buffer has additional AV_INPUT_BUFFER_PADDING_SIZE at the end w...
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
static int op(uint8_t **dst, const uint8_t *dst_end, GetByteContext *gb, int pixel, int count, int *x, int width, int linesize)
Perform decode operation.
static av_cold int cdxl_decode_init(AVCodecContext *avctx)
static void cdxl_decode_raw(CDXLVideoContext *c, AVFrame *frame)
static int cdxl_decode_frame(AVCodecContext *avctx, AVFrame *p, int *got_frame, AVPacket *pkt)
static void bitplanar2chunky(CDXLVideoContext *c, int linesize, uint8_t *out)
static void chunky2chunky(CDXLVideoContext *c, int linesize, uint8_t *out)
static av_cold int cdxl_decode_end(AVCodecContext *avctx)
static void cdxl_decode_ham6(CDXLVideoContext *c, AVFrame *frame)
static void import_palette(CDXLVideoContext *c, uint32_t *new_palette)
static void cdxl_decode_rgb(CDXLVideoContext *c, AVFrame *frame)
static void import_format(CDXLVideoContext *c, ptrdiff_t linesize, uint8_t *out)
static void bitline2chunky(CDXLVideoContext *c, int linesize, uint8_t *out)
static void cdxl_decode_ham8(CDXLVideoContext *c, AVFrame *frame)
Memory handling functions.
@ AV_PIX_FMT_RGB24
packed RGB 8:8:8, 24bpp, RGBRGB...
@ AV_PIX_FMT_PAL8
8 bits with AV_PIX_FMT_RGB32 palette
@ AV_PIX_FMT_BGR24
packed RGB 8:8:8, 24bpp, BGRBGR...
main external API structure.
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
int width
picture width / height.
This structure describes decoded (raw) audio or video data.
This structure stores compressed data.
#define avpriv_request_sample(...)