diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2018-04-19 23:32:07 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2018-04-19 23:32:07 +0200 |
commit | 9f1b99e7d076c9de1fefe971f1c70c96ebcf071b (patch) | |
tree | 08fa8d1a204c23cd0885149cdf062042f61361f6 /libavcodec/sbc.h | |
parent | f8b17fe33233237eea304d4fb0636539a131c1b2 (diff) | |
download | ffmpeg-9f1b99e7d076c9de1fefe971f1c70c96ebcf071b.tar.gz |
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.h | 2 |
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 */ |