Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2018-04-20 00:32:07 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2018-04-20 00:32:07 +0300
commit9f1b99e7d076c9de1fefe971f1c70c96ebcf071b (patch)
tree08fa8d1a204c23cd0885149cdf062042f61361f6 /libavcodec/sbc.c
parentf8b17fe33233237eea304d4fb0636539a131c1b2 (diff)
avcodec/sbc: Fix non static function prefix
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/sbc.c')
-rw-r--r--libavcodec/sbc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/sbc.c b/libavcodec/sbc.c
index f7dba79f4f..b43b66e3f5 100644
--- a/libavcodec/sbc.c
+++ b/libavcodec/sbc.c
@@ -52,7 +52,7 @@ static const int sbc_offset8[4][8] = {
/*
* Calculates the CRC-8 of the first len bits in data
*/
-uint8_t sbc_crc8(const AVCRC *ctx, const uint8_t *data, size_t len)
+uint8_t ff_sbc_crc8(const AVCRC *ctx, const uint8_t *data, size_t len)
{
size_t byte_length = len >> 3;
int bit_length = len & 7;