Go to the documentation of this file.
   36 #define CDG_FULL_WIDTH           300 
   37 #define CDG_FULL_HEIGHT          216 
   38 #define CDG_DISPLAY_WIDTH        294 
   39 #define CDG_DISPLAY_HEIGHT       204 
   40 #define CDG_BORDER_WIDTH           6 
   41 #define CDG_BORDER_HEIGHT         12 
   44 #define CDG_COMMAND             0x09 
   48 #define CDG_INST_MEMORY_PRESET     1 
   49 #define CDG_INST_BORDER_PRESET     2 
   50 #define CDG_INST_TILE_BLOCK        6 
   51 #define CDG_INST_SCROLL_PRESET    20 
   52 #define CDG_INST_SCROLL_COPY      24 
   53 #define CDG_INST_TRANSPARENT_COL  28 
   54 #define CDG_INST_LOAD_PAL_LO      30 
   55 #define CDG_INST_LOAD_PAL_HIGH    31 
   56 #define CDG_INST_TILE_BLOCK_XOR   38 
   59 #define CDG_PACKET_SIZE           24 
   60 #define CDG_DATA_SIZE             16 
   61 #define CDG_TILE_HEIGHT           12 
   62 #define CDG_TILE_WIDTH             6 
   63 #define CDG_MINIMUM_PKT_SIZE       6 
   64 #define CDG_MINIMUM_SCROLL_SIZE    3 
   65 #define CDG_HEADER_SIZE            8 
   66 #define CDG_PALETTE_SIZE          16 
   97     if (!(
data[1] & 0x0F)) {
 
  118     int array_offset  = low ? 0 : 8;
 
  119     uint32_t *palette = (uint32_t *) cc->
frame->
data[1];
 
  123         r = ((
color >> 8) & 0x000F) * 17;
 
  124         g = ((
color >> 4) & 0x000F) * 17;
 
  125         b = ((
color     ) & 0x000F) * 17;
 
  126         palette[
i + array_offset] = (uint32_t)cc->
alpha[
i + array_offset] << 24 | 
r << 16 | 
g << 8 | 
b;
 
  128 #if FF_API_PALETTE_HAS_CHANGED 
  154             if (!((
data[4 + y] >> (5 - x)) & 0x01))
 
  159             ai = ci + x + (
stride * (ri + y));
 
  175                               int in_tl_x, 
int in_tl_y, uint8_t *in,
 
  180     in  += in_tl_x  + in_tl_y  * 
stride;
 
  182     for (y = 0; y < 
h; y++)
 
  191     for (y = tl_y; y < tl_y + 
h; y++)
 
  196                              int in_tl_x, 
int in_tl_y, uint8_t *in,
 
  208                        AVFrame *new_frame, 
int roll_over)
 
  211     int hscmd, h_off, hinc, vscmd, v_off, vinc;
 
  215     uint8_t *
out = new_frame->
data[0];
 
  218     hscmd = (
data[1] & 0x30) >> 4;
 
  219     vscmd = (
data[2] & 0x30) >> 4;
 
  273     int buf_size       = avpkt->
size;
 
  275     uint8_t command, inst;
 
  293         for (
int y = 0; y < avctx->
height; y++)
 
  299     command = bytestream2_get_byte(&gb);
 
  300     inst    = bytestream2_get_byte(&gb);
 
  308             if (!(cdg_data[1] & 0x0F)) {
 
  309                 for (
int y = 0; y < avctx->
height; y++)
 
  311                            cdg_data[0] & 0x0F, avctx->
width);
 
  356                 cc->
alpha[
i] = 255 - ((cdg_data[
i] & 0x3f) << 2);
 
  382     for (
int y = 0; y < avctx->
height; y++)
 
  398     .
p.
name         = 
"cdgraphics",
 
  
static void cdg_scroll(CDGraphicsContext *cc, uint8_t *data, AVFrame *new_frame, int roll_over)
#define FF_ENABLE_DEPRECATION_WARNINGS
attribute_deprecated int palette_has_changed
Tell user application that palette has changed from previous frame.
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFrame structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later. That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another. Frame references ownership and permissions
static int cdg_decode_frame(AVCodecContext *avctx, AVFrame *frame, int *got_frame, AVPacket *avpkt)
#define CDG_INST_SCROLL_PRESET
#define CDG_INST_LOAD_PAL_HIGH
uint8_t alpha[CDG_PALETTE_SIZE]
#define CDG_MINIMUM_PKT_SIZE
void av_frame_free(AVFrame **frame)
Free the frame and any dynamically allocated objects in it, e.g.
#define CDG_INST_TRANSPARENT_COL
This structure describes decoded (raw) audio or video data.
static int cdg_tile_block(CDGraphicsContext *cc, uint8_t *data, int b)
#define CDG_INST_TILE_BLOCK_XOR
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.
uint8_t * data[AV_NUM_DATA_POINTERS]
pointer to the picture/channel planes.
static av_always_inline void bytestream2_skip(GetByteContext *g, unsigned int size)
AVCodec p
The public AVCodec.
static void cdg_decode_flush(AVCodecContext *avctx)
AVFrame * av_frame_alloc(void)
Allocate an AVFrame and set its fields to default values.
static void cdg_border_preset(CDGraphicsContext *cc, uint8_t *data)
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
static av_cold int cdg_decode_init(AVCodecContext *avctx)
#define CDG_BORDER_HEIGHT
#define FF_CODEC_DECODE_CB(func)
#define AV_GET_BUFFER_FLAG_REF
The decoder will keep a reference to the frame and may reuse it later.
int(* init)(AVBSFContext *ctx)
#define CODEC_LONG_NAME(str)
#define CDG_MINIMUM_SCROLL_SIZE
#define FFABS(a)
Absolute value, Note, INT_MIN / INT64_MIN result in undefined behavior as they are not representable ...
#define CDG_FULL_WIDTH
default screen sizes
const FFCodec ff_cdgraphics_decoder
static void cdg_copy_rect_buf(int out_tl_x, int out_tl_y, uint8_t *out, int in_tl_x, int in_tl_y, uint8_t *in, int w, int h, int stride)
static av_always_inline unsigned int bytestream2_get_buffer(GetByteContext *g, uint8_t *dst, unsigned int size)
static void cdg_load_palette(CDGraphicsContext *cc, uint8_t *data, int low)
static av_cold int cdg_decode_end(AVCodecContext *avctx)
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
int av_frame_ref(AVFrame *dst, const AVFrame *src)
Set up a new reference to the data described by the source frame.
static const uint32_t color[16+AV_CLASS_CATEGORY_NB]
#define CDG_INST_TILE_BLOCK
#define i(width, name, range_min, range_max)
#define CDG_INST_BORDER_PRESET
#define CDG_INST_SCROLL_COPY
const char * name
Name of the codec implementation.
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
@ AV_PIX_FMT_PAL8
8 bits with AV_PIX_FMT_RGB32 palette
int64_t frame_num
Frame counter, set by libavcodec.
int ff_reget_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Identical in function to ff_get_buffer(), except it reuses the existing buffer if available.
int av_frame_replace(AVFrame *dst, const AVFrame *src)
Ensure the destination frame refers to the same data described by the source frame,...
main external API structure.
#define FF_DISABLE_DEPRECATION_WARNINGS
#define CDG_INST_MEMORY_PRESET
instruction codes
static void cdg_fill_rect_preset(int tl_x, int tl_y, uint8_t *out, int color, int w, int h, int stride)
This structure stores compressed data.
int width
picture width / height.
static av_always_inline void bytestream2_init(GetByteContext *g, const uint8_t *buf, int buf_size)
int linesize[AV_NUM_DATA_POINTERS]
For video, a positive or negative value, which is typically indicating the size in bytes of each pict...
#define CDG_INST_LOAD_PAL_LO
static void cdg_fill_wrapper(int out_tl_x, int out_tl_y, uint8_t *out, int in_tl_x, int in_tl_y, uint8_t *in, int color, int w, int h, int stride, int roll)