FFmpeg
Classes | Macros | Typedefs | Variables
cinepak.c File Reference

Cinepak video decoder. More...

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "libavutil/common.h"
#include "libavutil/intreadwrite.h"
#include "avcodec.h"
#include "internal.h"

Classes

struct  cvid_strip
 
struct  CinepakContext
 

Macros

#define MAX_STRIPS   32
 

Typedefs

typedef uint8_t cvid_codebook[12]
 
typedef struct cvid_strip cvid_strip
 
typedef struct CinepakContext CinepakContext
 

Variables

AVCodec ff_cinepak_decoder
 

Detailed Description

Cinepak video decoder.

Author
Ewald Snel ewald.nosp@m.@ram.nosp@m.bo.it.nosp@m.s.tu.nosp@m.delft.nosp@m..nl
See also
For more information on the Cinepak algorithm, visit: http://www.csse.monash.edu.au/~timf/
For more information on the quirky data inside Sega FILM/CPK files, visit: http://wiki.multimedia.cx/index.php?title=Sega_FILM

Cinepak colorspace support (c) 2013 Rl, Aetey Global Technologies AB

Author
Cinepak colorspace, Rl, Aetey Global Technologies AB

Variable Documentation

§ ff_cinepak_decoder

AVCodec ff_cinepak_decoder
Initial value:
= {
.name = "cinepak",
.long_name = NULL_IF_CONFIG_SMALL("Cinepak"),
.type = AVMEDIA_TYPE_VIDEO,
.id = AV_CODEC_ID_CINEPAK,
.priv_data_size = sizeof(CinepakContext),
.init = cinepak_decode_init,
.close = cinepak_decode_end,
.decode = cinepak_decode_frame,
.capabilities = AV_CODEC_CAP_DR1,
}
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186
Definition: cinepak.c:58
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() for allocating buffers and supports custom allocators.
Definition: avcodec.h:959