diff options
author | Måns Rullgård <mans@mansr.com> | 2006-12-11 09:19:58 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-12-11 09:19:58 +0000 |
commit | c1173617cee7b4a932257306a546a741450b7765 (patch) | |
tree | dacdcbd3e6d64459713643325608c78a4fa6ca60 | |
parent | d0c2abb1d03f3c2185c94857215c5d94f1368f37 (diff) | |
download | ffmpeg-c1173617cee7b4a932257306a546a741450b7765.tar.gz |
improved stack misalignment warning
Originally committed as revision 7275 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/dsputil.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index ed9f048a40..c5e82d434f 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -3809,10 +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, 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"); + "Compiler did not align stack variables. Libavcodec has been miscompiled\n" + "and may be very slow or crash. This is not a bug in libavcodec,\n" + "but in the compiler. Do not report crashes to FFmpeg developers.\n"); #endif did_fail=1; } |