[FFmpeg-cvslog] dirac: ff_diracdsp_init_mmx() is only compiled when yasm is available
Michael Niedermayer
git at videolan.org
Mon Oct 31 03:06:05 CET 2011
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Mon Oct 31 02:47:23 2011 +0100| [c0dbab964d0669ad549a289c39fd9852b5f7d136] | committer: Michael Niedermayer
dirac: ff_diracdsp_init_mmx() is only compiled when yasm is available
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c0dbab964d0669ad549a289c39fd9852b5f7d136
---
libavcodec/diracdsp.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/libavcodec/diracdsp.c b/libavcodec/diracdsp.c
index 872faae..6cf75d8 100644
--- a/libavcodec/diracdsp.c
+++ b/libavcodec/diracdsp.c
@@ -197,5 +197,5 @@ void ff_diracdsp_init(DiracDSPContext *c)
PIXFUNC(avg, 16);
PIXFUNC(avg, 32);
- if (HAVE_MMX) ff_diracdsp_init_mmx(c);
+ if (HAVE_MMX && HAVE_YASM) ff_diracdsp_init_mmx(c);
}
More information about the ffmpeg-cvslog
mailing list