]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/sbc.c
avcodec: Remove deprecated VBV delay field
[ffmpeg] / libavcodec / sbc.c
index f7dba79f4fe90295550e742f57559f7f94c00e2f..b43b66e3f5192104d8414ed54e2bb2478cedfd01 100644 (file)
@@ -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;