OpenFFmpeg
Classes | Macros | Typedefs | Variables
anm.c File Reference

Deluxe Paint Animation demuxer. More...

#include "libavutil/intreadwrite.h"
#include "avformat.h"
#include "internal.h"

Classes

struct  Page
 
struct  AnmDemuxContext
 

Macros

#define MAX_PAGES   256
 Deluxe Paint hardcoded value.
 
#define LPF_TAG   MKTAG('L','P','F',' ')
 
#define ANIM_TAG   MKTAG('A','N','I','M')
 

Typedefs

typedef struct Page Page
 
typedef struct AnmDemuxContext AnmDemuxContext
 

Variables

AVInputFormat ff_anm_demuxer
 

Detailed Description

Deluxe Paint Animation demuxer.

Variable Documentation

§ ff_anm_demuxer

AVInputFormat ff_anm_demuxer
Initial value:
= {
.name = "anm",
.long_name = NULL_IF_CONFIG_SMALL("Deluxe Paint Animation"),
.priv_data_size = sizeof(AnmDemuxContext),
.read_probe = probe,
.read_header = read_header,
.read_packet = read_packet,
}
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186
Definition: anm.c:37