summaryrefslogtreecommitdiff
path: root/libavcodec/dsputil.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2006-12-07 18:35:58 +0000
committerMichael Niedermayer <michaelni@gmx.at>2006-12-07 18:35:58 +0000
commit6c81ca99067f303b3ce835385e14a91adbd62ac7 (patch)
treef7587fc6142430773fb6e45306f164d0ea3be75f /libavcodec/dsputil.c
parent6dc7d5da70292edcd7c9b17706caa938f79b853b (diff)
better warning
Originally committed as revision 7250 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.c')
-rw-r--r--libavcodec/dsputil.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c
index 0f5416ff64..ed9f048a40 100644
--- a/libavcodec/dsputil.c
+++ b/libavcodec/dsputil.c
@@ -3809,8 +3809,9 @@ int ff_check_alignment(void){
if(!did_fail){
#if defined(HAVE_MMX) || defined(HAVE_ALTIVEC)
av_log(NULL, AV_LOG_ERROR,
- "Compiler did not align stack variables, your code has been misscompiled\n"
- "and may crash, this is not a bug in the application but in the compiler\n"
+ "Compiler did not align stack variables, libavcodec has been misscompiled\n"
+ "and will possible be very slow or may crash, this is not a bug in the\n"
+ "application but in the compiler\n"
"so reporting it anywhere but to the compiler maintainers is senseless!\n");
#endif
did_fail=1;