]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/adx.h
aacenc: Fix issues with huge values of bit_rate.
[ffmpeg] / libavcodec / adx.h
index 93d547dcb22bc3a5d73bdbc2e76f6db4b4fe5493..92abe5f1634ff34ba92d855e15fe19607adfe00d 100644 (file)
@@ -40,6 +40,7 @@ typedef struct {
 } ADXChannelState;
 
 typedef struct {
+    AVFrame frame;
     int channels;
     ADXChannelState prev[2];
     int header_parsed;
@@ -74,7 +75,7 @@ void ff_adx_calculate_coeffs(int cutoff, int sample_rate, int bits, int *coeff);
  * @param[out] coeff        2 LPC coefficients, can be NULL
  * @return data offset or negative error code if header is invalid
  */
-int ff_adx_decode_header(AVCodecContext *avctx, const uint8_t *buf, int bufsize,
-                         int *header_size, int *coeff);
+int avpriv_adx_decode_header(AVCodecContext *avctx, const uint8_t *buf,
+                             int bufsize, int *header_size, int *coeff);
 
 #endif /* AVCODEC_ADX_H */