22 #define BITSTREAM_READER_LE 
   63                          ((unsigned)avctx->
height / 8);
 
   77     for (i = 0; i < 3; i++)
 
  102     for (i = 0; i < 
size; i++) {
 
  103         unsigned mask_bits = 
get_bits(gb, 4);
 
  107         for (j = 0; j < 4; j++) {
 
  108             if (mask_bits & (1 << j))
 
  129     if (value != (1 + ((1 << 3) - 1)))
 
  133     if (value != (1 + ((1 << 3) - 1)) + ((1 << 7) - 1))
 
  140                                     int* codebook_index, 
int superblock_index)
 
  144     unsigned block_index, 
depth;
 
  147         static const int8_t transitions[3][2] = { {2, 1}, {0, 2}, {1, 0} };
 
  149         *codebook_index = transitions[*codebook_index][
value];
 
  159     if (*codebook_index == 1) {
 
  173    uint32_t *dst = sb->
pixels32 + index + (index & -4);
 
  181                             uint16_t* 
src, 
unsigned src_stride)
 
  185         for (y = 0; y < 8; y++)
 
  186             memcpy(dest + y * dest_stride, src + y * src_stride,
 
  187                    sizeof(uint16_t) * 8);
 
  189         for (y = 0; y < 8; y++)
 
  190             memset(dest + y * dest_stride, 0, 
sizeof(uint16_t) * 8);
 
  194                                        0x4,   0x8,   0x40,   0x80,
 
  195                                        0x100, 0x200, 0x1000, 0x2000,
 
  196                                        0x400, 0x800, 0x4000, 0x8000};
 
  199                                   void *
data, 
int *got_frame,
 
  202     int buf_size = avpkt->
size;
 
  210     unsigned superblock_index, cb_index = 1,
 
  211              superblock_col_index = 0,
 
  212              superblocks_per_row = avctx->
width / 8, skip = -1;
 
  214     uint16_t* old_frame_data, *new_frame_data;
 
  215     unsigned old_stride, new_stride;
 
  232     if (!(frame_flags & 0x114) || !(frame_flags & 0x7800000)) {
 
  245     for (i = 0; i < 3; i++) {
 
  246         if (frame_flags & (1 << (17 + i))) {
 
  247             unsigned cb_depth, cb_size;
 
  252                 cb_depth = 
av_log2(cb_size - 1) + 1;
 
  258                     cb_size = 1 << cb_depth;
 
  276     new_frame_data = (uint16_t*)frame->
data[0];
 
  277     new_stride = frame->
linesize[0] / 2;
 
  278     old_frame_data = (uint16_t*)s->
frame->
data[0];
 
  282          superblock_index++) {
 
  285         unsigned multi_mask = 0;
 
  295                             old_frame_data, old_stride);
 
  298                             old_frame_data, old_stride);
 
  305                 for (i = 0; i < 16; i++) {
 
  313                 unsigned inv_mask = 
get_bits(&gb, 4);
 
  314                 for (i = 0; i < 4; i++) {
 
  315                     if (inv_mask & (1 << i)) {
 
  316                         multi_mask ^= 0xF << i*4;
 
  318                         multi_mask ^= 
get_bits(&gb, 4) << i*4;
 
  322                 for (i = 0; i < 16; i++) {
 
  329             } 
else if (frame_flags & (1 << 16)) {
 
  339         superblock_col_index++;
 
  343         if (superblock_col_index == superblocks_per_row) {
 
  344             new_frame_data += new_stride * 8 - superblocks_per_row * 8;
 
  346                 old_frame_data += old_stride * 8 - superblocks_per_row * 8;
 
  347             superblock_col_index = 0;
 
  353            "Escape sizes: %i, %i, %i\n",
 
static const uint16_t mask_matrix[]
 
#define AVERROR_INVALIDDATA
Invalid data found when processing input. 
 
This structure describes decoded (raw) audio or video data. 
 
ptrdiff_t const GLvoid * data
 
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits. 
 
static av_cold int init(AVCodecContext *avctx)
 
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx. 
 
static void insert_mb_into_sb(SuperBlock *sb, MacroBlock mb, unsigned index)
 
static double cb(void *priv, double x, double y)
 
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values. 
 
static unsigned decode_skip_count(GetBitContext *gb)
 
int av_frame_ref(AVFrame *dst, const AVFrame *src)
Set up a new reference to the data described by the source frame. 
 
static void copy_superblock(uint16_t *dest, unsigned dest_stride, uint16_t *src, unsigned src_stride)
 
static int get_bits_count(const GetBitContext *s)
 
bitstream reader API header. 
 
static int get_bits_left(GetBitContext *gb)
 
static const uint16_t mask[17]
 
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. ...
 
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers. 
 
const char * name
Name of the codec implementation. 
 
static av_cold int escape124_decode_close(AVCodecContext *avctx)
 
int width
picture width / height. 
 
GLsizei GLboolean const GLfloat * value
 
AVCodec ff_escape124_decoder
 
Libavcodec external API header. 
 
int linesize[AV_NUM_DATA_POINTERS]
For video, size in bytes of each picture line. 
 
static int init_get_bits8(GetBitContext *s, const uint8_t *buffer, int byte_size)
Initialize GetBitContext. 
 
main external API structure. 
 
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame. 
 
static unsigned int get_bits1(GetBitContext *s)
 
static CodeBook unpack_codebook(GetBitContext *gb, unsigned depth, unsigned size)
 
static unsigned int get_bits_long(GetBitContext *s, int n)
Read 0-32 bits. 
 
void av_frame_unref(AVFrame *frame)
Unreference all the buffers referenced by frame and reset the frame fields. 
 
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes. 
 
common internal api header. 
 
#define AV_PIX_FMT_RGB555
 
static av_cold int escape124_decode_init(AVCodecContext *avctx)
Initialize the decoder. 
 
static int decode(AVCodecContext *avctx, AVFrame *frame, int *got_frame, AVPacket *pkt)
 
This structure stores compressed data. 
 
#define AV_GET_BUFFER_FLAG_REF
The decoder will keep a reference to the frame and may reuse it later. 
 
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators. 
 
static av_always_inline int get_bitsz(GetBitContext *s, int n)
Read 0-25 bits. 
 
static MacroBlock decode_macroblock(Escape124Context *s, GetBitContext *gb, int *codebook_index, int superblock_index)
 
static int escape124_decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)