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 */