44         if (*x + run >= s->
width) {
 
   46             memset(d + *x, value, n);
 
   53             memset(d + *x, value, run);
 
   61                       int *x, 
int *
y, 
int *
plane, 
int bits_per_plane)
 
   64     int shift = *plane * bits_per_plane;
 
   65     int mask  = ((1 << bits_per_plane) - 1) << 
shift;
 
   70         for (j = 8-bits_per_plane; j >= 0; j -= bits_per_plane) {
 
   72             d[*x] |= (value >> j) & mask;
 
   80                    value <<= bits_per_plane;
 
   81                    mask  <<= bits_per_plane;
 
   95     [3] = { 0, 11, 13, 15 }, 
 
   96     [4] = { 0, 10, 12, 14 }, 
 
   97     [5] = { 0, 11, 12, 15 }, 
 
  101                         void *
data, 
int *got_frame,
 
  107     int bits_per_plane, bpp, etype, esize, npal, pos_after_pal;
 
  115     if (bytestream2_get_le16u(&s->
g) != 0x1234)
 
  118     s->
width       = bytestream2_get_le16u(&s->
g);
 
  119     s->
height      = bytestream2_get_le16u(&s->
g);
 
  121     tmp            = bytestream2_get_byteu(&s->
g);
 
  122     bits_per_plane = tmp & 0xF;
 
  125     if (bits_per_plane > 8 || bpp < 1 || bpp > 32) {
 
  130     if (bytestream2_peek_byte(&s->
g) == 0xFF || bpp == 1 || bpp == 4 || bpp == 8) {
 
  132         etype = bytestream2_get_le16(&s->
g);
 
  133         esize = bytestream2_get_le16(&s->
g);
 
  158     palette = (uint32_t*)frame->
data[1];
 
  159     if (etype == 1 && esize > 1 && bytestream2_peek_byte(&s->
g) < 6) {
 
  160         int idx = bytestream2_get_byte(&s->
g);
 
  162         for (i = 0; i < npal; i++)
 
  164     } 
else if (etype == 2) {
 
  165         npal = 
FFMIN(esize, 16);
 
  166         for (i = 0; i < npal; i++) {
 
  167             int pal_idx = bytestream2_get_byte(&s->
g);
 
  170     } 
else if (etype == 3) {
 
  171         npal = 
FFMIN(esize, 16);
 
  172         for (i = 0; i < npal; i++) {
 
  173             int pal_idx = bytestream2_get_byte(&s->
g);
 
  176     } 
else if (etype == 4 || etype == 5) {
 
  177         npal = 
FFMIN(esize / 3, 256);
 
  178         for (i = 0; i < npal; i++) {
 
  179             palette[i] = bytestream2_get_be24(&s->
g) << 2;
 
  180             palette[i] |= 0xFFU << 24 | palette[i] >> 6 & 0x30303;
 
  185             palette[0] = 0xFF000000;
 
  186             palette[1] = 0xFFFFFFFF;
 
  187         } 
else if (bpp == 2) {
 
  189             for (i = 0; i < npal; i++)
 
  203     if (bytestream2_get_le16(&s->
g)) {
 
  207             int stop_size, marker, 
t1, 
t2;
 
  210             t2        = bytestream2_get_le16(&s->
g);
 
  211             stop_size = t1 - 
FFMIN(t1, t2);
 
  214             marker    = bytestream2_get_byte(&s->
g);
 
  216             while (plane < s->nb_planes &&
 
  219                 val = bytestream2_get_byte(&s->
g);
 
  221                     run = bytestream2_get_byte(&s->
g);
 
  223                         run = bytestream2_get_le16(&s->
g);
 
  224                     val = bytestream2_get_byte(&s->
g);
 
  229                 if (bits_per_plane == 8) {
 
  234                     picmemset(s, frame, val, run, &x, &y, &plane, bits_per_plane);
 
  239         if (x < avctx->
width) {
 
  240             int run = (y + 1) * avctx->
width - x;
 
  241             if (bits_per_plane == 8)
 
  244                 picmemset(s, frame, val, run / (8 / bits_per_plane), &x, &y, &plane, bits_per_plane);
 
const char const char void * val
 
#define AVERROR_INVALIDDATA
Invalid data found when processing input. 
 
static int shift(int a, int b)
 
This structure describes decoded (raw) audio or video data. 
 
ptrdiff_t const GLvoid * data
 
static void picmemset_8bpp(PicContext *s, AVFrame *frame, int value, int run, int *x, int *y)
 
int ff_set_dimensions(AVCodecContext *s, int width, int height)
Check that the provided frame dimensions are valid and set them on the codec context. 
 
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx. 
 
static av_always_inline void bytestream2_init(GetByteContext *g, const uint8_t *buf, int buf_size)
 
static void picmemset(PicContext *s, AVFrame *frame, int value, int run, int *x, int *y, int *plane, int bits_per_plane)
 
void void avpriv_request_sample(void *avc, const char *msg,...) av_printf_format(2
Log a generic warning message about a missing feature. 
 
static const uint8_t cga_mode45_index[6][4]
 
8 bit with AV_PIX_FMT_RGB32 palette 
 
#define CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators. 
 
static const uint16_t mask[17]
 
static av_always_inline void bytestream2_skip(GetByteContext *g, unsigned int size)
 
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
 
static av_always_inline unsigned int bytestream2_get_bytes_left(GetByteContext *g)
 
const char * name
Name of the codec implementation. 
 
Libavcodec external API header. 
 
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...
 
enum AVPictureType pict_type
Picture type of the frame. 
 
int width
picture width / height. 
 
GLsizei GLboolean const GLfloat * value
 
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome. 
 
static av_always_inline int bytestream2_tell(GetByteContext *g)
 
static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
 
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. 
 
AVCodec ff_pictor_decoder
 
int palette_has_changed
Tell user application that palette has changed from previous frame. 
 
const uint32_t ff_cga_palette[16]
 
const uint32_t ff_ega_palette[64]
 
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. 
 
static av_always_inline int bytestream2_seek(GetByteContext *g, int offset, int whence)
 
This structure stores compressed data.