#include <stdio.h>
#include <stdlib.h>
#include "libavutil/intreadwrite.h"
#include "avcodec.h"
#include <zlib.h>
Go to the source code of this file.
Data Structures | |
| struct | DxaDecContext | 
Functions | |
| static int | decode_13 (AVCodecContext *avctx, DxaDecContext *c, uint8_t *dst, uint8_t *src, uint8_t *ref) | 
| static int | decode_frame (AVCodecContext *avctx, void *data, int *data_size, const uint8_t *buf, int buf_size) | 
| static av_cold int | decode_init (AVCodecContext *avctx) | 
| static av_cold int | decode_end (AVCodecContext *avctx) | 
Variables | |
| static const int | shift1 [6] = { 0, 8, 8, 8, 4, 4 } | 
| static const int | shift2 [6] = { 0, 0, 8, 4, 0, 4 } | 
| AVCodec | dxa_decoder | 
Definition in file dxa.c.
| static int decode_13 | ( | AVCodecContext * | avctx, | |
| DxaDecContext * | c, | |||
| uint8_t * | dst, | |||
| uint8_t * | src, | |||
| uint8_t * | ref | |||
| ) |  [static] | 
        
| static av_cold int decode_end | ( | AVCodecContext * | avctx | ) |  [static] | 
        
| static int decode_frame | ( | AVCodecContext * | avctx, | |
| void * | data, | |||
| int * | data_size, | |||
| const uint8_t * | buf, | |||
| int | buf_size | |||
| ) |  [static] | 
        
| static av_cold int decode_init | ( | AVCodecContext * | avctx | ) |  [static] | 
        
Initial value:
 {
    "dxa",
    CODEC_TYPE_VIDEO,
    CODEC_ID_DXA,
    sizeof(DxaDecContext),
    decode_init,
    NULL,
    decode_end,
    decode_frame,
    .long_name = NULL_IF_CONFIG_SMALL("Feeble Files/ScummVM DXA"),
}
const int shift1[6] = { 0, 8, 8, 8, 4, 4 } [static]           | 
        
const int shift2[6] = { 0, 0, 8, 4, 0, 4 } [static]           | 
        
 1.5.8