61 int buf_size = avpkt->
size;
63 const unsigned char *encoded =
buf;
64 unsigned char *pixptr, *pixptr_end;
66 unsigned int dlen, p, row;
67 const unsigned char *lp, *dp, *ep;
69 unsigned int planes = c->
planes;
70 unsigned char *planemap = c->
planemap;
76 ep = encoded + buf_size;
79 dp = encoded + planes * (height << 1);
81 for (p = 0; p < planes; p++) {
83 lp = encoded + p * (height << 1);
86 for (row = 0; row <
height; row++) {
87 pixptr = frame->
data[0] + row * frame->
linesize[0] + planemap[p];
88 pixptr_end = pixptr + frame->
linesize[0];
89 if (ep - lp < row * 2 + 2)
91 dlen =
av_be2ne16(*(
const unsigned short *)(lp + row * 2));
96 if ((count = *dp++) <= 127) {
99 if (pixptr_end - pixptr < count * planes)
109 if (pixptr_end - pixptr < count * planes)
171 c->
planemap[0] = HAVE_BIGENDIAN ? 1 : 2;
172 c->
planemap[1] = HAVE_BIGENDIAN ? 2 : 1;
173 c->
planemap[2] = HAVE_BIGENDIAN ? 3 : 0;
174 c->
planemap[3] = HAVE_BIGENDIAN ? 0 : 3;
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
This structure describes decoded (raw) audio or video data.
ptrdiff_t const GLvoid * data
static av_cold int init(AVCodecContext *avctx)
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
AVCodec ff_eightbps_decoder
8 bit with AV_PIX_FMT_RGB32 palette
int bits_per_coded_sample
bits per sample/pixel from the demuxer (needed for huffyuv).
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
const char * name
Name of the codec implementation.
common internal API header
packed RGB 8:8:8, 24bpp, BGRBGR...
static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
int ff_get_format(AVCodecContext *avctx, const enum AVPixelFormat *fmt)
Select the (possibly hardware accelerated) pixel format.
Libavcodec external API header.
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line.
main external API structure.
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
BYTE int const BYTE int int int height
static av_cold int decode_init(AVCodecContext *avctx)
int palette_has_changed
Tell user application that palette has changed from previous frame.
static enum AVPixelFormat pixfmt_rgb24[]
unsigned char planemap[4]
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
static int decode(AVCodecContext *avctx, void *data, int *got_sub, AVPacket *avpkt)
common internal api header.
uint8_t * av_packet_get_side_data(AVPacket *pkt, enum AVPacketSideDataType type, int *size)
Get side information from packet.
AVPixelFormat
Pixel format.
This structure stores compressed data.
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.