fplayer
C99 Falcon Sequence (fseq) file player for Light-O-Rama hardware (like xLights)
Loading...
Searching...
No Matches
comblock.h
Go to the documentation of this file.
1
3#ifndef FPLAYER_COMBLOCK_H
4#define FPLAYER_COMBLOCK_H
5
6struct FC;
7
8struct tf_header_t;
9
10struct fd_list_s;
11
19int ComBlock_read(struct FC* fc,
20 const struct tf_header_t* seq,
21 int index,
22 struct fd_list_s* list);
23
35int ComBlock_count(struct FC* fc, const struct tf_header_t* seq);
36
37#endif//FPLAYER_COMBLOCK_H
int ComBlock_count(struct FC *fc, const struct tf_header_t *seq)
Determines the number of compression blocks available within the given sequence file....
Definition comblock.c:212
int ComBlock_read(struct FC *fc, const struct tf_header_t *seq, int index, struct fd_list_s *list)
Reads the given compression block (by index) from the given file controller and decompresses it (if s...
Definition comblock.c:195
File controller that wraps a stdlib file pointer and provides additional functionality for reading fi...
Definition fc.c:10
Represents a list of frame data blocks.
Definition fd.h:10