#include "libavutil/intreadwrite.h"
#include "dsputil.h"
#include "get_bits.h"
#include "avcodec.h"
Go to the source code of this file.
Data Structures | |
struct | CLLCContext |
Functions | |
static int | read_code_table (CLLCContext *ctx, GetBitContext *gb, VLC *vlc) |
static int | read_argb_line (CLLCContext *ctx, GetBitContext *gb, int *top_left, VLC *vlc, uint8_t *outbuf) |
static int | read_rgb24_component_line (CLLCContext *ctx, GetBitContext *gb, int *top_left, VLC *vlc, uint8_t *outbuf) |
static int | decode_argb_frame (CLLCContext *ctx, GetBitContext *gb, AVFrame *pic) |
static int | decode_rgb24_frame (CLLCContext *ctx, GetBitContext *gb, AVFrame *pic) |
static int | cllc_decode_frame (AVCodecContext *avctx, void *data, int *got_picture_ptr, AVPacket *avpkt) |
static av_cold int | cllc_decode_close (AVCodecContext *avctx) |
static av_cold int | cllc_decode_init (AVCodecContext *avctx) |
Variables | |
AVCodec | ff_cllc_decoder |
static av_cold int cllc_decode_close | ( | AVCodecContext * | avctx | ) | [static] |
static int cllc_decode_frame | ( | AVCodecContext * | avctx, | |
void * | data, | |||
int * | got_picture_ptr, | |||
AVPacket * | avpkt | |||
) | [static] |
static av_cold int cllc_decode_init | ( | AVCodecContext * | avctx | ) | [static] |
static int decode_argb_frame | ( | CLLCContext * | ctx, | |
GetBitContext * | gb, | |||
AVFrame * | pic | |||
) | [static] |
static int decode_rgb24_frame | ( | CLLCContext * | ctx, | |
GetBitContext * | gb, | |||
AVFrame * | pic | |||
) | [static] |
static int read_argb_line | ( | CLLCContext * | ctx, | |
GetBitContext * | gb, | |||
int * | top_left, | |||
VLC * | vlc, | |||
uint8_t * | outbuf | |||
) | [static] |
static int read_code_table | ( | CLLCContext * | ctx, | |
GetBitContext * | gb, | |||
VLC * | vlc | |||
) | [static] |
static int read_rgb24_component_line | ( | CLLCContext * | ctx, | |
GetBitContext * | gb, | |||
int * | top_left, | |||
VLC * | vlc, | |||
uint8_t * | outbuf | |||
) | [static] |
Initial value:
{ .name = "cllc", .type = AVMEDIA_TYPE_VIDEO, .id = AV_CODEC_ID_CLLC, .priv_data_size = sizeof(CLLCContext), .init = cllc_decode_init, .decode = cllc_decode_frame, .close = cllc_decode_close, .capabilities = CODEC_CAP_DR1, .long_name = NULL_IF_CONFIG_SMALL("Canopus Lossless Codec"), }