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 B7F3B48063 for ; Thu, 8 Feb 2024 12:58:09 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 717B368D065; Thu, 8 Feb 2024 14:58:06 +0200 (EET) Received: from relay2-d.mail.gandi.net (relay2-d.mail.gandi.net [217.70.183.194]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id EA44568CBD7 for ; Thu, 8 Feb 2024 14:57:59 +0200 (EET) Received: by mail.gandi.net (Postfix) with ESMTPSA id 1556B4000D for ; Thu, 8 Feb 2024 12:57:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=niedermayer.cc; s=gm1; t=1707397079; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc; bh=azz/qVuTNMm+kPcnf4geAZSJvQXwlP4oMOhzwr5lXQg=; b=MhkVLkHXGBf2++W+1uFaFz+/i8zq2r/xSJq7uc76Ay7fye5u2VNL3SsJjytjrWIo6UmREe x0muETKAGi0nz9CirF/1pzzv344VCLnveJkaeXfY4xm4a4yBzCR4J8YRRz39QXjyUcbtgB LivBc75OTbi3U3x9aBs2Sz8YBAugogwBSrElvdypa34279BawMUwoEmhlrwD2wvuk27NE/ rnOfTP6Mgf5hu0O9kic5Y4NjluA1PUaUsbG1s7m3nYvrwnarf+UHle9ZtC3FkK00t7Kvwh VqTBI9OUd/15a+cS5xmiAsESMR7AiNeWZnRWPX2xFe/K312N7qydS7GBh4ZyGQ== From: Michael Niedermayer To: FFmpeg development discussions and patches Date: Thu, 8 Feb 2024 13:57:57 +0100 Message-Id: <20240208125758.29992-1-michael@niedermayer.cc> X-Mailer: git-send-email 2.17.1 X-GND-Sasl: michael@niedermayer.cc Subject: [FFmpeg-devel] [PATCH 1/2] avutil/pixfmt: Add AV_PIX_MAX_PLANES 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 MIME-Version: 1.0 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: It seems we do not have a named identifier for the maximum planes of pixel formats Signed-off-by: Michael Niedermayer --- libavutil/pixfmt.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavutil/pixfmt.h b/libavutil/pixfmt.h index 9c87571f49e..67422f02d02 100644 --- a/libavutil/pixfmt.h +++ b/libavutil/pixfmt.h @@ -32,6 +32,8 @@ #define AVPALETTE_SIZE 1024 #define AVPALETTE_COUNT 256 +#define AV_PIX_MAX_PLANES 4 + /** * Pixel format. * -- 2.17.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".