#include <inttypes.h>
#include "libavutil/intreadwrite.h"
#include "bswapdsp.h"
#include "canopus.h"
#include "get_bits.h"
#include "avcodec.h"
#include "internal.h"
#include "thread.h"
Go to the source code of this file.
|
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 | read_yuv_component_line (CLLCContext *ctx, GetBitContext *gb, int *top_left, VLC *vlc, uint8_t *outbuf, int is_chroma) |
|
static int | decode_argb_frame (CLLCContext *ctx, GetBitContext *gb, AVFrame *pic) |
|
static int | decode_rgb24_frame (CLLCContext *ctx, GetBitContext *gb, AVFrame *pic) |
|
static int | decode_yuv_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) |
|
◆ VLC_BITS
◆ VLC_DEPTH
◆ read_code_table()
◆ read_argb_line()
◆ read_rgb24_component_line()
◆ read_yuv_component_line()
◆ decode_argb_frame()
◆ decode_rgb24_frame()
◆ decode_yuv_frame()
◆ cllc_decode_frame()
◆ cllc_decode_close()
◆ cllc_decode_init()
◆ ff_cllc_decoder
Initial value:= {
.name = "cllc",
}
static int init_thread_copy(AVCodecContext *avctx)
static av_cold int init(AVCodecContext *avctx)
static int cllc_decode_frame(AVCodecContext *avctx, void *data, int *got_picture_ptr, AVPacket *avpkt)
#define FF_CODEC_CAP_INIT_THREADSAFE
The codec does not modify any global variables in the init function, allowing to call the init functi...
static av_cold int cllc_decode_close(AVCodecContext *avctx)
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
#define AV_CODEC_CAP_FRAME_THREADS
Codec supports frame-level multithreading.
#define ONLY_IF_THREADS_ENABLED(x)
Define a function with only the non-default version specified.
static av_cold int cllc_decode_init(AVCodecContext *avctx)
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition at line 522 of file cllc.c.