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

FITS demuxer. More...

#include "libavutil/intreadwrite.h"
#include "internal.h"
#include "libavutil/opt.h"
#include "libavcodec/fits.h"
#include "libavutil/bprint.h"

Classes

struct  FITSContext
 

Macros

#define FITS_BLOCK_SIZE   2880
 

Typedefs

typedef struct FITSContext FITSContext
 

Variables

AVInputFormat ff_fits_demuxer
 

Detailed Description

FITS demuxer.

Variable Documentation

§ ff_fits_demuxer

AVInputFormat ff_fits_demuxer
Initial value:
= {
.name = "fits",
.long_name = NULL_IF_CONFIG_SMALL("Flexible Image Transport System"),
.priv_data_size = sizeof(FITSContext),
.read_probe = fits_probe,
.read_header = fits_read_header,
.read_packet = fits_read_packet,
.priv_class = &fits_demuxer_class,
.raw_codec_id = AV_CODEC_ID_FITS,
}
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:186
Definition: fitsdec.c:42