#include "avcodec.h"
#include "bitstream.h"
#include "huffman.h"
#include "bytestream.h"
#include "dsputil.h"
Go to the source code of this file.
Data Structures | |
| struct | FrapsContext | 
| local variable storage  More... | |
Defines | |
| #define | FPS_TAG MKTAG('F', 'P', 'S', 'x') | 
Functions | |
| static av_cold int | decode_init (AVCodecContext *avctx) | 
| initializes decoder   | |
| static int | huff_cmp (const void *va, const void *vb) | 
| Comparator - our nodes should ascend by count but with preserved symbol order.   | |
| 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   | |
| static int | decode_frame (AVCodecContext *avctx, void *data, int *data_size, const uint8_t *buf, int buf_size) | 
| decode a frame   | |
| static av_cold int | decode_end (AVCodecContext *avctx) | 
| closes decoder   | |
Variables | |
| AVCodec | fraps_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.
| #define FPS_TAG MKTAG('F', 'P', 'S', 'x') | 
| static av_cold int decode_end | ( | AVCodecContext * | avctx | ) |  [static] | 
        
| static int decode_frame | ( | AVCodecContext * | avctx, | |
| void * | data, | |||
| int * | data_size, | |||
| const uint8_t * | buf, | |||
| int | buf_size | |||
| ) |  [static] | 
        
decode a frame
| avctx | codec context | |
| data | output AVFrame | |
| data_size | size of output data or 0 if no picture is returned | |
| buf | input data frame | |
| buf_size | size of input data frame | 
Fraps v2 is Huffman-coded YUV420 planes Fraps v4 is virtually the same
| static av_cold int decode_init | ( | AVCodecContext * | avctx | ) |  [static] | 
        
| 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 | |||
| ) |  [static] | 
        
| static int huff_cmp | ( | const void * | va, | |
| const void * | vb | |||
| ) |  [static] | 
        
Comparator - our nodes should ascend by count but with preserved symbol order.
Definition at line 78 of file fraps.c.
Referenced by fraps2_decode_plane().
Initial value:
 {
    "fraps",
    CODEC_TYPE_VIDEO,
    CODEC_ID_FRAPS,
    sizeof(FrapsContext),
    decode_init,
    NULL,
    decode_end,
    decode_frame,
    CODEC_CAP_DR1,
    .long_name = NULL_IF_CONFIG_SMALL("Fraps"),
}
 1.5.8