FFmpeg
|
#include "config.h"
#include "avcodec.h"
#include "get_bits.h"
#include "huffman.h"
#include "bytestream.h"
#include "bswapdsp.h"
#include "internal.h"
#include "thread.h"
Go to the source code of this file.
Data Structures | |
struct | FrapsContext |
local variable storage More... | |
Macros | |
#define | CACHED_BITSTREAM_READER HAVE_FAST_64BIT |
#define | UNCHECKED_BITSTREAM_READER 1 |
#define | FPS_TAG MKTAG('F', 'P', 'S', 'x') |
#define | VLC_BITS 11 |
Functions | |
static av_cold int | decode_init (AVCodecContext *avctx) |
initializes decoder More... | |
static int | huff_cmp (const void *va, const void *vb) |
Comparator - our nodes should ascend by count but with preserved symbol order. More... | |
static int | fraps2_decode_plane (FrapsContext *s, uint8_t *dst, int stride, int w, int h, const uint8_t *src, int size, int Uoff, const int step) |
decode Fraps v2 packed plane More... | |
static int | decode_frame (AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt) |
static av_cold int | decode_end (AVCodecContext *avctx) |
closes decoder More... | |
Variables | |
AVCodec | ff_fraps_decoder |
Lossless Fraps 'FPS1' decoder
Codec algorithm for version 0 is taken from Transcode <www.transcoding.org>
Version 2 files support by Konstantin Shishkov
Definition in file fraps.c.
|
static |
|
static |
Comparator - our nodes should ascend by count but with preserved symbol order.
Definition at line 81 of file fraps.c.
Referenced by fraps2_decode_plane().
|
static |
|
static |
AVCodec ff_fraps_decoder |