FFmpeg
|
#include <stdio.h>
#include <string.h>
#include "libavutil/common.h"
#include "libavutil/intreadwrite.h"
#include "avcodec.h"
#include "codec_internal.h"
#include "decode.h"
Go to the source code of this file.
Data Structures | |
struct | cvid_strip |
struct | CinepakContext |
Macros | |
#define | MAX_STRIPS 32 |
Typedefs | |
typedef uint8_t | cvid_codebook[12] |
Functions | |
static void | cinepak_decode_codebook (cvid_codebook *codebook, int chunk_id, int size, const uint8_t *data) |
static int | cinepak_decode_vectors (CinepakContext *s, cvid_strip *strip, int chunk_id, int size, const uint8_t *data) |
static int | cinepak_decode_strip (CinepakContext *s, cvid_strip *strip, const uint8_t *data, int size) |
static int | cinepak_predecode_check (CinepakContext *s) |
static int | cinepak_decode (CinepakContext *s) |
static av_cold int | cinepak_decode_init (AVCodecContext *avctx) |
static int | cinepak_decode_frame (AVCodecContext *avctx, AVFrame *rframe, int *got_frame, AVPacket *avpkt) |
static av_cold int | cinepak_decode_end (AVCodecContext *avctx) |
Variables | |
const FFCodec | ff_cinepak_decoder |
Cinepak video decoder
Cinepak colorspace support (c) 2013 Rl, Aetey Global Technologies AB
Definition in file cinepak.c.
|
static |
Definition at line 76 of file cinepak.c.
Referenced by cinepak_decode_strip().
|
static |
Definition at line 132 of file cinepak.c.
Referenced by cinepak_decode_strip().
|
static |
Definition at line 266 of file cinepak.c.
Referenced by cinepak_decode().
|
static |
Definition at line 318 of file cinepak.c.
Referenced by cinepak_decode_frame().
|
static |
Definition at line 369 of file cinepak.c.
Referenced by cinepak_decode_frame().
|
static |
|
static |
|
static |
const FFCodec ff_cinepak_decoder |