This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 2b1d8ba3ecb8bb302db2c8dadf4350d800ddf719 Author: Kacper Michajłow <[email protected]> AuthorDate: Sun Mar 29 22:21:16 2026 +0200 Commit: Kacper Michajłow <[email protected]> CommitDate: Sun Mar 29 22:22:29 2026 +0200 avfilter/x86/vf_atadenoise: move %if ARCH_X86_64 after x86util include This is consistent pattern with other files. Also is needed for next commit to always include x86util.asm Signed-off-by: Kacper Michajłow <[email protected]> --- libavfilter/x86/vf_atadenoise.asm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavfilter/x86/vf_atadenoise.asm b/libavfilter/x86/vf_atadenoise.asm index 4945ad3f5e..f1a21cbe75 100644 --- a/libavfilter/x86/vf_atadenoise.asm +++ b/libavfilter/x86/vf_atadenoise.asm @@ -20,10 +20,10 @@ ;* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA ;****************************************************************************** -%if ARCH_X86_64 - %include "libavutil/x86/x86util.asm" +%if ARCH_X86_64 + SECTION_RODATA pw_one: times 8 dw 1 pw_ones: times 8 dw 65535 _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
