From a61b0df7083cd840fc08e74718a086b97aaefd31 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Thu, 20 Jan 2011 02:15:10 +0100 Subject: [PATCH] Add ASMALIGN() hack to patch around its recent removial from configure --- libavfilter/libmpcodecs/mp_image.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavfilter/libmpcodecs/mp_image.h b/libavfilter/libmpcodecs/mp_image.h index 02c78482a2..3d566af693 100644 --- a/libavfilter/libmpcodecs/mp_image.h +++ b/libavfilter/libmpcodecs/mp_image.h @@ -33,6 +33,8 @@ #undef rand #undef srand #undef printf +#define ASMALIGN(ZEROBITS) ".p2align " #ZEROBITS "\n\t" + //--------- codec's requirements (filled by the codec/vf) ---------