45 uint8_t *d =
frame->data[0] + *y *
frame->linesize[0];
46 if (*x +
run >=
s->width) {
47 int n =
s->width - *x;
48 memset(d + *x,
value, n);
63 int *x,
int *y,
int *plane,
int bits_per_plane)
66 int shift = *plane * bits_per_plane;
67 unsigned mask = ((1U << bits_per_plane) - 1) <<
shift;
71 int pixels_per_value = 8/bits_per_plane;
77 for (j = 8-bits_per_plane; j >= 0; j -= bits_per_plane) {
80 while (xl ==
s->width) {
86 if (planel >=
s->nb_planes)
88 value <<= bits_per_plane;
89 mask <<= bits_per_plane;
92 if (
s->nb_planes == 1 &&
93 run*pixels_per_value >=
s->width &&
94 pixels_per_value < (
s->width / pixels_per_value * pixels_per_value)
96 for (; xl < pixels_per_value; xl ++) {
97 j = (j < bits_per_plane ? 8 : j) - bits_per_plane;
101 run -=
s->width / pixels_per_value;
102 xl =
s->width / pixels_per_value * pixels_per_value;
115 [0] = { 0, 3, 5, 7 },
116 [1] = { 0, 2, 4, 6 },
117 [2] = { 0, 3, 4, 7 },
118 [3] = { 0, 11, 13, 15 },
119 [4] = { 0, 10, 12, 14 },
120 [5] = { 0, 11, 12, 15 },
128 int bits_per_plane, bpp, etype, esize, npal, pos_after_pal;
129 int i, x, y, plane,
tmp, ret,
val;
136 if (bytestream2_get_le16u(&
s->g) != 0x1234)
139 s->width = bytestream2_get_le16u(&
s->g);
140 s->height = bytestream2_get_le16u(&
s->g);
142 tmp = bytestream2_get_byteu(&
s->g);
143 bits_per_plane =
tmp & 0xF;
144 s->nb_planes = (
tmp >> 4) + 1;
145 bpp = bits_per_plane *
s->nb_planes;
146 if (bits_per_plane > 8 || bpp < 1 || bpp > 32) {
151 if (bytestream2_peek_byte(&
s->g) == 0xFF || bpp == 1 || bpp == 4 || bpp == 8) {
153 etype = bytestream2_get_le16(&
s->g);
154 esize = bytestream2_get_le16(&
s->g);
185 if (
s->width != avctx->
width ||
s->height != avctx->
height) {
193 memset(
frame->data[0], 0,
s->height *
frame->linesize[0]);
197 palette = (uint32_t*)
frame->data[1];
198 if (etype == 1 && esize > 1 && bytestream2_peek_byte(&
s->g) < 6) {
199 int idx = bytestream2_get_byte(&
s->g);
201 for (
i = 0;
i < npal;
i++)
203 }
else if (etype == 2) {
204 npal =
FFMIN(esize, 16);
205 for (
i = 0;
i < npal;
i++) {
206 int pal_idx = bytestream2_get_byte(&
s->g);
209 }
else if (etype == 3) {
210 npal =
FFMIN(esize, 16);
211 for (
i = 0;
i < npal;
i++) {
212 int pal_idx = bytestream2_get_byte(&
s->g);
215 }
else if (etype == 4 || etype == 5) {
216 npal =
FFMIN(esize / 3, 256);
217 for (
i = 0;
i < npal;
i++) {
218 palette[
i] = bytestream2_get_be24(&
s->g) << 2;
219 palette[
i] |= 0xFFU << 24 | palette[
i] >> 6 & 0x30303;
224 palette[0] = 0xFF000000;
225 palette[1] = 0xFFFFFFFF;
226 }
else if (bpp == 2) {
228 for (
i = 0;
i < npal;
i++)
242 if (bytestream2_get_le16(&
s->g)) {
246 int stop_size, marker, t1, t2;
249 t2 = bytestream2_get_le16(&
s->g);
250 stop_size = t1 -
FFMIN(t1, t2);
253 marker = bytestream2_get_byte(&
s->g);
255 while (plane < s->nb_planes &&
258 val = bytestream2_get_byte(&
s->g);
260 run = bytestream2_get_byte(&
s->g);
262 run = bytestream2_get_le16(&
s->g);
263 val = bytestream2_get_byte(&
s->g);
266 if (bits_per_plane == 8) {
276 if (
s->nb_planes - plane > 1)
279 if (plane < s->nb_planes && x < avctx->
width) {
280 int run = (y + 1) * avctx->
width - x;
281 if (bits_per_plane == 8)
static double val(void *priv, double ch)
const FFCodec ff_pictor_decoder
Libavcodec external API header.
static av_always_inline int bytestream2_get_bytes_left(const GetByteContext *g)
static av_always_inline void bytestream2_init(GetByteContext *g, const uint8_t *buf, int buf_size)
static av_always_inline void bytestream2_skip(GetByteContext *g, unsigned int size)
static av_always_inline int bytestream2_seek(GetByteContext *g, int offset, int whence)
static av_always_inline int bytestream2_tell(const GetByteContext *g)
#define i(width, name, range_min, range_max)
const uint32_t ff_cga_palette[16]
const uint32_t ff_ega_palette[64]
#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)
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
void av_memcpy_backptr(uint8_t *dst, int back, int cnt)
Overlapping memcpy() implementation.
int av_image_check_size(unsigned int w, unsigned int h, int log_offset, void *log_ctx)
Check if the given dimension of an image is valid, meaning that all bytes of the image can be address...
@ AV_PICTURE_TYPE_I
Intra.
static int decode_frame(AVCodecContext *avctx, AVFrame *picture, int *got_frame, AVPacket *avpkt)
static int shift(int a, int b)
static const uint16_t mask[17]
Memory handling functions.
static int decode_frame(AVCodecContext *avctx, AVFrame *frame, int *got_frame, AVPacket *avpkt)
static void picmemset(PicContext *s, AVFrame *frame, unsigned value, int run, int *x, int *y, int *plane, int bits_per_plane)
static const uint8_t cga_mode45_index[6][4]
static void picmemset_8bpp(PicContext *s, AVFrame *frame, int value, int run, int *x, int *y)
@ AV_PIX_FMT_PAL8
8 bits with AV_PIX_FMT_RGB32 palette
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(...)