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 72E20490E9 for ; Fri, 3 May 2024 21:55:32 +0000 (UTC) Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 3935E68D71B; Sat, 4 May 2024 00:55:14 +0300 (EEST) Received: from relay5-d.mail.gandi.net (relay5-d.mail.gandi.net [217.70.183.197]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 3374F68D6FB for ; Sat, 4 May 2024 00:55:07 +0300 (EEST) Received: by mail.gandi.net (Postfix) with ESMTPSA id D45C11C0005 for ; Fri, 3 May 2024 21:55:05 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=niedermayer.cc; s=gm1; t=1714773306; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=DZT3bbd86WX/oI7rXmwWOdyhyKzhIGTjpTTq9yvufpQ=; b=KaRt24XdZELtgxg6pJDogUf5tuPiuIBhCFACod9g7qQm1/N340D4yVG+trR4zPZiXXo5bP 36ljleI7Jc1AUEVVziQIM/Am+5h0ZP1UT+HoAy2oyxrK6R9Mbl1SEIEq6wTdySdiy1cYOh eO8U3HHZjh2NwAIJ6LXGPpTH4zAvd98BDNaKPwujTVUGh2GW5TWh3xeqXr7J4gzwThHoxl bcMGl6vu/yrIxZc9SpkCJ2juH//fCd3FvwgAC405VIqnAu0s5avNmkcE5mpKMRRXwFI72B FVVoAem/9XLGF16tDGc2qDIL9+aaxmCb0hwYHbxCL3VuqcY47HXrPZI8g1AusQ== From: Michael Niedermayer To: FFmpeg development discussions and patches Date: Fri, 3 May 2024 23:55:00 +0200 Message-ID: <20240503215502.1509887-3-michael@niedermayer.cc> X-Mailer: git-send-email 2.43.2 In-Reply-To: <20240503215502.1509887-1-michael@niedermayer.cc> References: <20240503215502.1509887-1-michael@niedermayer.cc> MIME-Version: 1.0 X-GND-Sasl: michael@niedermayer.cc Subject: [FFmpeg-devel] [PATCH 3/5] avcodec/dovi_rpuenc: fix compaatibility 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 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: Fixes: a frequency Found while reviewing: CID1596607 Sponsored-by: Sovereign Tech Fund Signed-off-by: Michael Niedermayer --- libavcodec/dovi_rpuenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/dovi_rpuenc.c b/libavcodec/dovi_rpuenc.c index 80dc22234a9..7e0292533bd 100644 --- a/libavcodec/dovi_rpuenc.c +++ b/libavcodec/dovi_rpuenc.c @@ -139,7 +139,7 @@ int ff_dovi_configure(DOVIContext *s, AVCodecContext *avctx) if (!dv_profile || bl_compat_id < 0) { if (s->enable > 0) { av_log(s->logctx, AV_LOG_ERROR, "Dolby Vision enabled, but could " - "not determine profile and compaatibility mode. Double-check " + "not determine profile and compatibility mode. Double-check " "colorspace and format settings for compatibility?\n"); return AVERROR(EINVAL); } -- 2.43.2 _______________________________________________ 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".