aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2024-04-23 11:02:00 -0300
committerJames Almer <jamrial@gmail.com>2024-04-23 11:02:00 -0300
commit63702d5f9c92b69dcd07c84d4d870f4e4544bf9f (patch)
tree0c9211cdc6611ee0950d4042017d812656c73045
parent1b416311852c085bd91743486df2086f508efdcd (diff)
downloadffmpeg-63702d5f9c92b69dcd07c84d4d870f4e4544bf9f.tar.gz
avcodec/aac/aacdec: remove double colon
Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r--libavcodec/aac/aacdec.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/aac/aacdec.h b/libavcodec/aac/aacdec.h
index 9d04f25108..4cf764e2e9 100644
--- a/libavcodec/aac/aacdec.h
+++ b/libavcodec/aac/aacdec.h
@@ -75,13 +75,13 @@ enum CouplingPoint {
union { \
int RENAME_FIXED(name) elems; \
float name elems; \
- };
+ }
#define INTFLOAT_ALIGNED_UNION(alignment, name, nb_elems) \
union { \
DECLARE_ALIGNED(alignment, int, RENAME_FIXED(name))[nb_elems]; \
DECLARE_ALIGNED(alignment, float, name)[nb_elems]; \
- };
+ }
/**
* Long Term Prediction
*/