summaryrefslogtreecommitdiff
path: root/libavcodec/sbc.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2018-04-19 23:32:07 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2018-04-19 23:32:07 +0200
commit9f1b99e7d076c9de1fefe971f1c70c96ebcf071b (patch)
tree08fa8d1a204c23cd0885149cdf062042f61361f6 /libavcodec/sbc.h
parentf8b17fe33233237eea304d4fb0636539a131c1b2 (diff)
avcodec/sbc: Fix non static function prefix
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/sbc.h')
-rw-r--r--libavcodec/sbc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/sbc.h b/libavcodec/sbc.h
index 405fadc3a6..de9c8d9aed 100644
--- a/libavcodec/sbc.h
+++ b/libavcodec/sbc.h
@@ -112,7 +112,7 @@ struct sbc_frame {
const AVCRC *crc_ctx;
};
-uint8_t sbc_crc8(const AVCRC *crc_ctx, const uint8_t *data, size_t len);
+uint8_t ff_sbc_crc8(const AVCRC *crc_ctx, const uint8_t *data, size_t len);
void ff_sbc_calculate_bits(const struct sbc_frame *frame, int (*bits)[8]);
#endif /* AVCODEC_SBC_H */