fplayer
C99 Falcon Sequence (fseq) file player for Light-O-Rama hardware (like xLights)
Loading...
Searching...
No Matches
seq.h
Go to the documentation of this file.
1
3#ifndef FPLAYER_SEQ_H
4#define FPLAYER_SEQ_H
5
6struct FC;
7
8struct tf_header_t;
9
15int Seq_open(struct FC* fc, struct tf_header_t** seq);
16
23int Seq_getMediaFile(struct FC* fc, const struct tf_header_t *seq, char** value);
24
25#endif//FPLAYER_SEQ_H
int Seq_open(struct FC *fc, struct tf_header_t **seq)
Reads a FSEQ header and initializes the header struct with the sequence's metadata....
Definition seq.c:17
int Seq_getMediaFile(struct FC *fc, const struct tf_header_t *seq, char **value)
Retrieves the audio file path from the sequence for playback by searching the FSEQ's variable table f...
Definition seq.c:86
File controller that wraps a stdlib file pointer and provides additional functionality for reading fi...
Definition fc.c:10