Data Structures | Typedefs | Functions | Variables

libavcodec/xl.c File Reference

Miro VideoXL codec. More...

#include "libavutil/intreadwrite.h"
#include "avcodec.h"

Go to the source code of this file.

Data Structures

struct  VideoXLContext

Typedefs

typedef struct VideoXLContext VideoXLContext

Functions

static int decode_frame (AVCodecContext *avctx, void *data, int *data_size, AVPacket *avpkt)
static av_cold int decode_init (AVCodecContext *avctx)
static av_cold int decode_end (AVCodecContext *avctx)

Variables

static const int xl_table [32]
AVCodec xl_decoder

Detailed Description

Miro VideoXL codec.

Definition in file xl.c.


Typedef Documentation


Function Documentation

static av_cold int decode_end ( AVCodecContext avctx  )  [static]

Definition at line 131 of file xl.c.

static int decode_frame ( AVCodecContext avctx,
void *  data,
int *  data_size,
AVPacket avpkt 
) [static]

Definition at line 41 of file xl.c.

static av_cold int decode_init ( AVCodecContext avctx  )  [static]

Definition at line 123 of file xl.c.


Variable Documentation

Initial value:
 {
    "xl",
    AVMEDIA_TYPE_VIDEO,
    CODEC_ID_VIXL,
    sizeof(VideoXLContext),
    decode_init,
    NULL,
    decode_end,
    decode_frame,
    CODEC_CAP_DR1,
    .long_name = NULL_IF_CONFIG_SMALL("Miro VideoXL"),
}

Definition at line 141 of file xl.c.

const int xl_table[32] [static]
Initial value:
 {
   0,   1,   2,   3,   4,   5,   6,   7,
   8,   9,  12,  15,  20,  25,  34,  46,
  64,  82,  94, 103, 108, 113, 116, 119,
 120, 121, 122, 123, 124, 125, 126, 127}

Definition at line 35 of file xl.c.

Referenced by decode_frame().