summaryrefslogtreecommitdiffstats
path: root/audio/format.h
diff options
context:
space:
mode:
Diffstat (limited to 'audio/format.h')
-rw-r--r--audio/format.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/audio/format.h b/audio/format.h
index 3a80a601c5..95e792340c 100644
--- a/audio/format.h
+++ b/audio/format.h
@@ -134,6 +134,9 @@ enum af_format {
(AF_FORMAT_IS_AC3(fmt) || \
((fmt) & AF_FORMAT_SPECIAL_MASK) == AF_FORMAT_S_IEC61937)
+#define AF_FORMAT_IS_SPECIAL(fmt) \
+ ((fmt & AF_FORMAT_SPECIAL_MASK) != 0)
+
struct af_fmt_entry {
const char *name;
int format;
@@ -152,4 +155,6 @@ int af_fmt_seconds_to_bytes(int format, float seconds, int channels, int sampler
bool af_fmt_is_valid(int format);
+void af_fill_silence(void *dst, size_t bytes, int format);
+
#endif /* MPLAYER_AF_FORMAT_H */