FFmpeg
|
FITS demuxer. More...
#include "libavutil/intreadwrite.h"
#include "internal.h"
#include "libavutil/opt.h"
#include "libavcodec/fits.h"
#include "libavutil/bprint.h"
Go to the source code of this file.
Data Structures | |
struct | FITSContext |
Macros | |
#define | FITS_BLOCK_SIZE 2880 |
Functions | |
static int | fits_probe (AVProbeData *p) |
static int | fits_read_header (AVFormatContext *s) |
static int64_t | is_image (AVFormatContext *s, FITSContext *fits, FITSHeader *header, AVBPrint *avbuf, uint64_t *data_size) |
Parses header and checks that the current HDU contains image or not It also stores the header in the avbuf and stores the size of data part in data_size. More... | |
static int | fits_read_packet (AVFormatContext *s, AVPacket *pkt) |
Variables | |
static const AVOption | fits_options [] |
static const AVClass | fits_demuxer_class |
AVInputFormat | ff_fits_demuxer |
FITS demuxer.
Definition in file fitsdec.c.
#define FITS_BLOCK_SIZE 2880 |
Definition at line 33 of file fitsdec.c.
Referenced by fits_read_packet(), and is_image().
|
static |
|
static |
|
static |
Parses header and checks that the current HDU contains image or not It also stores the header in the avbuf and stores the size of data part in data_size.
s | pointer to AVFormat Context |
fits | pointer to FITSContext |
header | pointer to FITSHeader |
avbuf | pointer to AVBPrint to store the header |
data_size | to store the size of data part |
Definition at line 78 of file fitsdec.c.
Referenced by fits_read_packet().
|
static |
|
static |
|
static |
AVInputFormat ff_fits_demuxer |