diff options
author | avcoder <ffmpeg@gmail.com> | 2010-12-01 13:12:39 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2010-12-01 13:12:39 +0000 |
commit | 1761272ba9f03d3c99dea8400adf79629bf2b9b5 (patch) | |
tree | d1c4eb8c825e771a57a6c0df4e3ac150a966413f | |
parent | cfff297d9890a43a51b2f3f0efbfcdd12964b5fe (diff) | |
download | ffmpeg-1761272ba9f03d3c99dea8400adf79629bf2b9b5.tar.gz |
Use SECTION .text for yasm code.
Patch by avcoder, ffmpeg gmail
Originally committed as revision 25859 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/x86/deinterlace.asm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/x86/deinterlace.asm b/libavcodec/x86/deinterlace.asm index 5db94644fb..76a096eff3 100644 --- a/libavcodec/x86/deinterlace.asm +++ b/libavcodec/x86/deinterlace.asm @@ -27,6 +27,8 @@ SECTION_RODATA cextern pw_4 +SECTION .text + %macro DEINTERLACE 1 %ifidn %1, inplace ;void ff_deinterlace_line_inplace_mmx(const uint8_t *lum_m4, const uint8_t *lum_m3, const uint8_t *lum_m2, const uint8_t *lum_m1, const uint8_t *lum, int size) |