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 45E3D4434A for ; Tue, 6 Sep 2022 10:28:06 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 3BBD668BA7A; Tue, 6 Sep 2022 13:28:03 +0300 (EEST) Received: from mail-lf1-f42.google.com (mail-lf1-f42.google.com [209.85.167.42]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 0872D68BA6D for ; Tue, 6 Sep 2022 13:27:56 +0300 (EEST) Received: by mail-lf1-f42.google.com with SMTP id bt10so16685197lfb.1 for ; Tue, 06 Sep 2022 03:27:56 -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:subject:date; bh=2LuXgiNx/5nqWyX0ess/PtNczeswPGKeIWSVJgPTgXo=; b=CazEpbNyOu1qa74Fpmot85VOtULDzSII8ONJDC7JYKhmKobNXP/5JF1l+jgl9AaGSk b9hyXJWTqdzbxAR4lJnTzrLKPz0lNFUQQzASZFRFVjwUf/jW6Z5QPlAnfLsCVSINVY9m UnH1jsHtsLSG51G2tMODQYuAxy1Om4U8RbGF6l9HSBeMk4Z4NuSsp0NHCKqEVOc7P2v3 Js2txkzvipcRXqy8mL2PWsJ39tQp50fItPE4yp16aHLDYUOlgrSs/xUXAuCvvORszX9p +4fcIFH/fyZZ2n+WYAelBni2GVVudg9P6N1TyMLlw8mBnxZf54sY4Nsp5gy0PPEq4wLa lPCg== 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:subject:date; bh=2LuXgiNx/5nqWyX0ess/PtNczeswPGKeIWSVJgPTgXo=; b=TR7HWaXYZaEqKZEYR4pcSaBXcgxEuca0QNOvQGXRXPRHIFyKedfjgoBR6HcLabD85m hhNTRxR7tHHqRO+RItXLW+T0tBNNSNK48XODwFUxD2EWLYXejLjje/gCPWRklwbmKQuJ ieNg77nqB3KDR0THEpD1zBn4ImY8vyfCVtxsqfZFMfvHq/hBXDSY0iMrptf7I8CM7kLn WkIdrj3JG/pHb68sDPml6MWFnUeLFj+XtzG2AiYJB/PXS2so7F7advlGbd11Qyg+TPhk 08jKOzlhj8fgjUiuQf9yIW07yd/KmOr2hD5Fpo2IqiRM3/g5VQtTQtm2+3retg34pLa4 iHBg== X-Gm-Message-State: ACgBeo1n6JTmUDeuTVqSVA6k0pgls6k2rcajF/NS/nZIr1fat/wTKNX/ hqaK8Fq1AUttC8CfsLgTzN0lG5IAAvVAlg== X-Google-Smtp-Source: AA6agR73ZoUvR+pTYkew1J435JSsEZsLIslHS5DG+VztxRlatrw71+4gxC/+xUK+7ji5weQr6ZlBUQ== X-Received: by 2002:a05:6512:754:b0:494:b3db:1b61 with SMTP id c20-20020a056512075400b00494b3db1b61mr5562994lfs.556.1662460075960; Tue, 06 Sep 2022 03:27:55 -0700 (PDT) Received: from hum-HP-ProBook-440-G7.wifi.semihalf.net ([83.142.187.84]) by smtp.gmail.com with ESMTPSA id q5-20020a2eb4a5000000b0025e59f125fbsm1822751ljm.53.2022.09.06.03.27.54 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 06 Sep 2022 03:27:55 -0700 (PDT) From: Hubert Mazur To: ffmpeg-devel@ffmpeg.org Date: Tue, 6 Sep 2022 12:27:17 +0200 Message-Id: <20220906102722.53266-1-hum@semihalf.com> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Subject: [FFmpeg-devel] [PATCH 0/5] Provide optimized neon implementation 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 implementations for me_cmp functions. This set of patches fixes all issues addressed in previous review. Major changes: - Remove redundant loads since the data can be reused. - Improve style. - Fix issues with unrecognized symbols. 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 | 387 +++++++++++++++++++++++ 2 files changed, 417 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".