From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org [79.124.17.100]) by master.gitmailbox.com (Postfix) with ESMTP id 03CE043C06 for ; Mon, 22 Aug 2022 15:26:48 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 9122168BA0E; Mon, 22 Aug 2022 18:26:45 +0300 (EEST) Received: from mail-lf1-f46.google.com (mail-lf1-f46.google.com [209.85.167.46]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id B4E0368B8E0 for ; Mon, 22 Aug 2022 18:26:39 +0300 (EEST) Received: by mail-lf1-f46.google.com with SMTP id z6so15766414lfu.9 for ; Mon, 22 Aug 2022 08:26:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=semihalf.com; s=google; h=content-transfer-encoding:mime-version:message-id:date:subject:cc :to:from:from:to:cc; bh=tjsgcQDN2llIX7/pySo53kT4gq4UBogHByiTu0LhQk8=; b=Qmvl9v2YPA0KKBrrK1rDs4JQWXeowNZxkghj4pV+VJV4I3mcWWPqurxukh4hKgmmbJ F7dDfHyCa0gs4uFS1vtsaCh+Nsm2wwnHG5c6nFC9JIvlHAiE+1wc56c8u8U7InpROraH vCURdg+zn/KxBcl7WvkiaEHHlYaqRH8Y9siia7PN42+cW6BOYLVPyfkNdbMRGiq1QkB9 MTS3AWVwNLvt3ffuMzg3y4OsicBmFz115DWEHmDLHGl3LUMyyPRTfQ07/oxVBo/+lvhW vwEa3ctAdMb7X0/eELsRYpTRIUUNhErSx1ifMAlcyZXau2L0+xunuWG4faLGJ5KJlXUI rESg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=content-transfer-encoding:mime-version:message-id:date:subject:cc :to:from:x-gm-message-state:from:to:cc; bh=tjsgcQDN2llIX7/pySo53kT4gq4UBogHByiTu0LhQk8=; b=B3mYruTdNDm4ArjAnserjRFB/utsSBie+CBdMd32UFR4m+Qd8k5x+mZXZOSoYyC79f 1v3QNpSMpb4xxvQN99YL5CcrvVb5rYn4kr/BM2E/NxlAznzZnW7mRbCyObr+Im4B1wwI wQeNBsqRp7o24yFLxs54douztHs6iQJ2hycluJD90N4TVQL5Okilfpx6E6akLuvlhmCS 9098TkrviafXRYCZYSgsYdKP7gIYUyP7oNMPjmoQuXVG9lzsHdLhArvwS+C9nGuy2yrU d9R9c41nVKb+7d4r3uCEjFQE4c7M/wvRC0Dg3eVc1vAwztrUazNtC66zzmMMEM8bxOGq R8Vw== X-Gm-Message-State: ACgBeo3qIrKmNeGmyak0LOeNIhS2iyqenx7eye5+/h5ggatBsN7NhPud Q6jmEeISUAZxUQIkWScTygX2ykgTiiWVvQ== X-Google-Smtp-Source: AA6agR5fcQpoXeaKn7JBXItcgZC6PGEXcQ99LdAQuoZ0kqwZdAI7LAVIsAfZL6+Xek4phSnieO8YGg== X-Received: by 2002:ac2:418a:0:b0:48b:aa2:1d9f with SMTP id z10-20020ac2418a000000b0048b0aa21d9fmr7998772lfh.195.1661181998554; Mon, 22 Aug 2022 08:26:38 -0700 (PDT) Received: from hum-HP-ProBook-440-G7.office.semihalf.net ([83.142.187.84]) by smtp.gmail.com with ESMTPSA id z13-20020a056512370d00b00492f21c161esm2921lfr.123.2022.08.22.08.26.37 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 22 Aug 2022 08:26:38 -0700 (PDT) From: Hubert Mazur To: ffmpeg-devel@ffmpeg.org Date: Mon, 22 Aug 2022 17:26:22 +0200 Message-Id: <20220822152627.1992008-1-hum@semihalf.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH 0/5] me_cmp: Provide arm64 neon implementations X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: FFmpeg development discussions and patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: FFmpeg development discussions and patches Cc: gjb@semihalf.com, upstream@semihalf.com, jswinney@amazon.com, Hubert Mazur , martin@martin.st, mw@semihalf.com, spop@amazon.com Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: Provide optimized arm64 neon implementations for functions from motion estimation family. Hubert Mazur (5): lavc/aarch64: Add neon implementation for vsad16 lavc/aarch64: Add neon implementation of vsse16 lavc/aarch64: Add neon implementation for vsad_intra16 lavc/aarch64: Add neon implementation for vsse_intra16 lavc/aarch64: Provide neon implementation of nsse16 libavcodec/aarch64/me_cmp_init_aarch64.c | 30 ++ libavcodec/aarch64/me_cmp_neon.S | 431 +++++++++++++++++++++++ 2 files changed, 461 insertions(+) -- 2.34.1 _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe".