vgmstream/src/plugins.h

107 lines
3.7 KiB
C
Raw Normal View History

/*
* plugins.h - helper for plugins
*/
#ifndef _PLUGINS_H_
#define _PLUGINS_H_
#include "streamfile.h"
2019-03-09 20:50:58 +01:00
/* ****************************************** */
/* CONTEXT: simplifies plugin code */
2019-03-09 20:50:58 +01:00
/* ****************************************** */
typedef struct {
int is_extension; /* set if filename is already an extension */
int skip_standard; /* set if shouldn't check standard formats */
int reject_extensionless; /* set if player can't play extensionless files */
int accept_unknown; /* set to allow any extension (for txth) */
int accept_common; /* set to allow known-but-common extension (when player has plugin priority) */
} vgmstream_ctx_valid_cfg;
/* returns if vgmstream can parse file by extension */
int vgmstream_ctx_is_valid(const char* filename, vgmstream_ctx_valid_cfg *cfg);
#if 0
2019-03-09 20:50:58 +01:00
/* opaque player state */
typedef struct VGMSTREAM_CTX VGMSTREAM_CTX;
2019-03-09 20:50:58 +01:00
typedef struct {
//...
} VGMSTREAM_CTX_INFO;
2019-03-09 20:50:58 +01:00
VGMSTREAM_CTX* vgmstream_ctx_init(...);
2019-03-09 20:50:58 +01:00
VGMSTREAM_CTX* vgmstream_ctx_format_check(...);
VGMSTREAM_CTX* vgmstream_ctx_set_format_whilelist(...);
VGMSTREAM_CTX* vgmstream_ctx_set_format_blacklist(...);
2019-03-09 20:50:58 +01:00
VGMSTREAM_CTX* vgmstream_ctx_set_file(...);
2019-03-09 20:50:58 +01:00
VGMSTREAM_CTX* vgmstream_ctx_get_config(...);
2019-03-09 20:50:58 +01:00
VGMSTREAM_CTX* vgmstream_ctx_set_config(...);
2019-03-09 20:50:58 +01:00
VGMSTREAM_CTX* vgmstream_ctx_get_buffer(...);
2019-03-09 20:50:58 +01:00
VGMSTREAM_CTX* vgmstream_ctx_get_info(...);
2019-03-09 20:50:58 +01:00
VGMSTREAM_CTX* vgmstream_ctx_describe(...);
2019-03-11 14:49:29 +01:00
VGMSTREAM_CTX* vgmstream_ctx_get_title(...);
2019-03-11 14:49:29 +01:00
VGMSTREAM_CTX* vgmstream_ctx_get_tagfile(...);
2019-03-11 14:49:29 +01:00
VGMSTREAM_CTX* vgmstream_ctx_play(...);
2019-03-09 20:50:58 +01:00
VGMSTREAM_CTX* vgmstream_ctx_seek(...);
2019-03-09 20:50:58 +01:00
VGMSTREAM_CTX* vgmstream_ctx_close(...);
2019-03-09 20:50:58 +01:00
#endif
/* ****************************************** */
/* TAGS: loads key=val tags from a file */
/* ****************************************** */
2019-03-04 22:50:05 +01:00
/* opaque tag state */
typedef struct VGMSTREAM_TAGS VGMSTREAM_TAGS;
2019-03-04 22:50:05 +01:00
/* Initializes TAGS and returns pointers to extracted strings (always valid but change
* on every vgmstream_tags_next_tag call). Next functions are safe to call even if this fails (validate NULL).
* ex.: const char *tag_key, *tag_val; tags=vgmstream_tags_init(&tag_key, &tag_val); */
VGMSTREAM_TAGS* vgmstream_tags_init(const char* *tag_key, const char* *tag_val);
2019-03-04 22:50:05 +01:00
/* Resets tagfile to restart reading from the beginning for a new filename.
* Must be called first before extracting tags. */
void vgmstream_tags_reset(VGMSTREAM_TAGS* tags, const char* target_filename);
/* Extracts next valid tag in tagfile to *tag. Returns 0 if no more tags are found (meant to be
* called repeatedly until 0). Key/values are trimmed and values can be in UTF-8. */
2019-03-04 22:50:05 +01:00
int vgmstream_tags_next_tag(VGMSTREAM_TAGS* tags, STREAMFILE* tagfile);
/* Closes tag file */
void vgmstream_tags_close(VGMSTREAM_TAGS* tags);
2019-03-09 20:50:58 +01:00
/* ****************************************** */
/* MIXING: modifies vgmstream output */
/* ****************************************** */
2019-03-04 22:50:05 +01:00
/* Enables mixing effects, with max outbuf samples as a hint. Once active, plugin
2019-03-09 20:50:58 +01:00
* must use returned input_channels to create outbuf and output_channels to output audio.
* max_sample_count may be 0 if you only need to query values and not actually enable it.
2019-03-09 20:50:58 +01:00
* Needs to be enabled last after adding effects. */
void vgmstream_mixing_enable(VGMSTREAM* vgmstream, int32_t max_sample_count, int *input_channels, int *output_channels);
/* sets automatic downmixing if vgmstream's channels are higher than max_channels */
2019-03-18 00:05:44 +01:00
void vgmstream_mixing_autodownmix(VGMSTREAM *vgmstream, int max_channels);
2019-03-09 20:50:58 +01:00
/* sets a fadeout */
//void vgmstream_mixing_fadeout(VGMSTREAM *vgmstream, float start_second, float duration_seconds);
#endif /* _PLUGINS_H_ */