This is an automated email from the git hooks/post-receive script.

Git pushed a commit to branch master
in repository ffmpeg.

commit 483ee7c7fac2f7c09edd1d5048d5f20fc8d63bf6
Author:     Kacper Michajłow <[email protected]>
AuthorDate: Wed Jul 29 23:04:04 2026 +0200
Commit:     Kacper Michajłow <[email protected]>
CommitDate: Mon Aug 10 19:52:20 2026 +0200

    avcodec/ac3dec: mark the E-AC-3 prototypes as av_unused
    
    Fixes -Wunused-function in checkheaders.
    
    Signed-off-by: Kacper Michajłow <[email protected]>
---
 libavcodec/ac3dec.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/libavcodec/ac3dec.h b/libavcodec/ac3dec.h
index a099264475..1a4da07fa3 100644
--- a/libavcodec/ac3dec.h
+++ b/libavcodec/ac3dec.h
@@ -266,20 +266,20 @@ struct AC3HeaderInfo;
  * Parse the E-AC-3 frame header.
  * This parses both the bit stream info and audio frame header.
  */
-static int ff_eac3_parse_header(AC3DecodeContext *s, const struct 
AC3HeaderInfo *hdr);
+av_unused static int ff_eac3_parse_header(AC3DecodeContext *s, const struct 
AC3HeaderInfo *hdr);
 
 /**
  * Decode mantissas in a single channel for the entire frame.
  * This is used when AHT mode is enabled.
  */
-static void ff_eac3_decode_transform_coeffs_aht_ch(AC3DecodeContext *s, int 
ch);
+av_unused static void ff_eac3_decode_transform_coeffs_aht_ch(AC3DecodeContext 
*s, int ch);
 
 /**
  * Apply spectral extension to each channel by copying lower frequency
  * coefficients to higher frequency bins and applying side information to
  * approximate the original high frequency signal.
  */
-static void ff_eac3_apply_spectral_extension(AC3DecodeContext *s);
+av_unused static void ff_eac3_apply_spectral_extension(AC3DecodeContext *s);
 
 #if (!USE_FIXED)
 extern float ff_ac3_heavy_dynamic_range_tab[256];

_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to