summaryrefslogtreecommitdiffstats
path: root/demux/codec_tags.h
diff options
context:
space:
mode:
Diffstat (limited to 'demux/codec_tags.h')
-rw-r--r--demux/codec_tags.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/demux/codec_tags.h b/demux/codec_tags.h
index d8c63800b1..b65b68792a 100644
--- a/demux/codec_tags.h
+++ b/demux/codec_tags.h
@@ -19,6 +19,7 @@
#define MP_CODEC_TAGS_H
#include <stdint.h>
+#include <stdbool.h>
uint32_t mp_video_fourcc_alias(uint32_t fourcc);
@@ -26,4 +27,7 @@ struct sh_stream;
void mp_set_codec_from_tag(struct sh_stream *sh);
+void mp_set_pcm_codec(struct sh_stream *sh, bool sign, bool is_float, int bits,
+ bool is_be);
+
#endif