[FFmpeg-cvslog] x86: pngdsp: Fix assembly for OS/2

Dave Yeo git at videolan.org
Thu Aug 9 01:02:23 CEST 2012


ffmpeg | branch: master | Dave Yeo <dave.r.yeo at gmail.com> | Tue Aug  7 21:46:33 2012 -0700| [197439c1efc84b8698904590b69bd36db86e1c24] | committer: Diego Biurrun

x86: pngdsp: Fix assembly for OS/2

The a.out object format does not allow aligning sections.
On OS/2 LD aligns sections to 16 bytes.

Signed-off-by: Diego Biurrun <diego at biurrun.de>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=197439c1efc84b8698904590b69bd36db86e1c24
---

 libavcodec/x86/pngdsp.asm |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/x86/pngdsp.asm b/libavcodec/x86/pngdsp.asm
index d6e6374..970f3db 100644
--- a/libavcodec/x86/pngdsp.asm
+++ b/libavcodec/x86/pngdsp.asm
@@ -28,7 +28,7 @@ SECTION_RODATA
 
 cextern pw_255
 
-section .text align=16
+SECTION_TEXT
 
 ; %1 = nr. of xmm registers used
 %macro ADD_BYTES_FN 1



More information about the ffmpeg-cvslog mailing list