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 9BD0646BFC for ; Wed, 6 Sep 2023 04:19:14 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 3EEC668C71B; Wed, 6 Sep 2023 07:19:12 +0300 (EEST) Received: from w4.tutanota.de (w4.tutanota.de [81.3.6.165]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id D94CA68C577 for ; Wed, 6 Sep 2023 07:19:05 +0300 (EEST) Received: from tutadb.w10.tutanota.de (unknown [192.168.1.10]) by w4.tutanota.de (Postfix) with ESMTP id 2CD5510600DF for ; Wed, 6 Sep 2023 04:19:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1693973944; s=s1; d=lynne.ee; h=From:From:To:To:Subject:Subject:Content-Description:Content-ID:Content-Type:Content-Type:Content-Transfer-Encoding:Cc:Date:Date:In-Reply-To:MIME-Version:MIME-Version:Message-ID:Message-ID:Reply-To:References:Sender; bh=feyk9t8SkDL7USaymF+EPEbozSO5XEjd7g8F/WAM4G4=; b=w64WVNCGimV2NlYOxzza7jc9DmfbFa3essYpA4J54cCJ+mI5l3XQRJfDR+A4iBV3 hMscwqfszTJ0Nrb5WUR2tDg4ljPZw9340xrEhPuFOte7snQ06J6+ujXGcxmw6whveks aPifLAn9dtaAWoPtbmhFcdtCqzmjpEp1CyEfxbXCJDe9wR6KbNyutzp2thQKvdPrm/h JOoMaOWZRo9Qq023q0e0DhzthRTAu/4/DHSHzzzKBhGt9CtrmFUVh1lXQOBpovSwEWX Uv4r09qHk9jhwwqtKZHvZcBLmkGrUqdD1Zx8FqMPUZJUIcXjMunpyrhTGK0z2/NM+MG NHS382Nf1Q== Date: Wed, 6 Sep 2023 06:19:04 +0200 (CEST) From: Lynne To: Ffmpeg Devel Message-ID: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_Part_509395_535629973.1693973944964" Subject: [FFmpeg-devel] [PATCH 1/2] lavu/tx: add missing prints for the type of dctI/dstI 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 Errors-To: ffmpeg-devel-bounces@ffmpeg.org Sender: "ffmpeg-devel" Archived-At: List-Archive: List-Post: ------=_Part_509395_535629973.1693973944964 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Forgot to add the new types to the print, currently they fallback to "unknown". ------=_Part_509395_535629973.1693973944964 Content-Type: text/x-diff; charset=us-ascii; name=0001-lavu-tx-add-missing-prints-for-the-type-of-dctI-dstI.patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=0001-lavu-tx-add-missing-prints-for-the-type-of-dctI-dstI.patch >From 439f1e881313ef63ecb8e8e264f4847d6612619d Mon Sep 17 00:00:00 2001 From: Lynne Date: Sun, 3 Sep 2023 16:47:53 +0200 Subject: [PATCH 1/2] lavu/tx: add missing prints for the type of dctI/dstI --- libavutil/tx.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/libavutil/tx.c b/libavutil/tx.c index e9826e6107..24b2015b44 100644 --- a/libavutil/tx.c +++ b/libavutil/tx.c @@ -578,12 +578,18 @@ static void print_type(AVBPrint *bp, enum AVTXType type) type == AV_TX_FLOAT_FFT ? "fft_float" : type == AV_TX_FLOAT_MDCT ? "mdct_float" : type == AV_TX_FLOAT_RDFT ? "rdft_float" : + type == AV_TX_FLOAT_DCT_I ? "dctI_float" : + type == AV_TX_FLOAT_DST_I ? "dstI_float" : type == AV_TX_DOUBLE_FFT ? "fft_double" : type == AV_TX_DOUBLE_MDCT ? "mdct_double" : type == AV_TX_DOUBLE_RDFT ? "rdft_double" : + type == AV_TX_DOUBLE_DCT_I ? "dctI_double" : + type == AV_TX_DOUBLE_DST_I ? "dstI_double" : type == AV_TX_INT32_FFT ? "fft_int32" : type == AV_TX_INT32_MDCT ? "mdct_int32" : type == AV_TX_INT32_RDFT ? "rdft_int32" : + type == AV_TX_INT32_DCT_I ? "dctI_int32" : + type == AV_TX_INT32_DST_I ? "dstI_int32" : "unknown"); } -- 2.40.1 ------=_Part_509395_535629973.1693973944964 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ 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". ------=_Part_509395_535629973.1693973944964--