57     {{1, 2, 3, 4}, {1, 2, 0, 3},
 
   58      {1, 2, 1, 3}, {1, 2, 2, 3},
 
   59      {1, 0, 2, 3}, {1, 0, 0, 2},
 
   60      {1, 0, 1, 2}, {1, 1, 2, 3},
 
   61      {0, 1, 2, 3}, {0, 1, 0, 2},
 
   62      {1, 1, 0, 2}, {0, 1, 1, 2},
 
   63      {0, 0, 1, 2}, {0, 0, 0, 1},
 
  116                "Palette parameters invalid, header probably corrupt\n");
 
  160     if (bufptr < s->dstbuf) {
 
  167     s->
dstptr[linesize]     = bufptr[linesize];
 
  168     s->
dstptr[linesize + 1] = bufptr[linesize + 1];
 
  196     int tag, firstcolor, is_odd_frame;
 
  217     is_odd_frame = avpkt->
data[0];
 
  223     palette      = (uint32_t *)frame->
data[1];
 
  226         palette[i + firstcolor] = (s->
srcptr[0] << 18) |
 
  229         palette[i + firstcolor] |= 0xFF
U << 24 |
 
  230                                    (palette[i + firstcolor] >> 6) & 0x30303;
 
  235     for (y = 0; y < avctx->
height; y += 2) {
 
  236         for (x = 0; x < avctx->
width; x += 2) {
 
static int copy_tag(AVIOContext *in, AVIOContext *out, int32_t tag_name)
#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)
static uint8_t yop_get_next_nibble(YopDecContext *s)
Return the next nibble in sequence, consuming a new byte on the input only if necessary. 
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx. 
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values. 
8 bit with AV_PIX_FMT_RGB32 palette 
static int yop_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
int av_frame_ref(AVFrame *dst, const AVFrame *src)
Set up a new reference to the data described by the source frame. 
uint8_t * extradata
some codecs need / can use extradata like Huffman tables. 
bitstream reader API header. 
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered. 
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g. 
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
static const int8_t motion_vector[16][2]
Lookup table for copying macroblocks. 
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...
int ff_reget_buffer(AVCodecContext *avctx, AVFrame *frame)
Identical in function to av_frame_make_writable(), except it uses ff_get_buffer() to allocate the buf...
int width
picture width / height. 
static const uint8_t paint_lut[15][4]
Lookup table for painting macroblocks. 
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line. 
main external API structure. 
static av_cold int yop_decode_close(AVCodecContext *avctx)
static int yop_paint_block(YopDecContext *s, int linesize, int tag)
Paint a macroblock using the pattern in paint_lut. 
int palette_has_changed
Tell user application that palette has changed from previous frame. 
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)
static int yop_copy_previous_block(YopDecContext *s, int linesize, int copy_tag)
Copy a previously painted macroblock to the current_block. 
common internal api header. 
static av_cold int yop_decode_init(AVCodecContext *avctx)
int frame_number
Frame counter, set by libavcodec. 
This structure stores compressed data.