]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/adx.c
cbs_h264: Add utility functions to insert/delete SEI messages
[ffmpeg] / libavcodec / adx.c
index a9cf4ffd097a0149fc676640621c6ec44dc4f086..d941d7b89c56b51c82ac23527436bc1fb72c4887 100644 (file)
@@ -35,8 +35,8 @@ void ff_adx_calculate_coeffs(int cutoff, int sample_rate, int bits, int *coeff)
     coeff[1] = lrintf(-(c * c) * (1 << bits));
 }
 
-int avpriv_adx_decode_header(AVCodecContext *avctx, const uint8_t *buf,
-                             int bufsize, int *header_size, int *coeff)
+int ff_adx_decode_header(AVCodecContext *avctx, const uint8_t *buf,
+                         int bufsize, int *header_size, int *coeff)
 {
     int offset, cutoff;