From patchwork Sun Jan 29 17:44:59 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: u-9iep@aetey.se X-Patchwork-Id: 2360 Delivered-To: ffmpegpatchwork@gmail.com Received: by 10.103.89.21 with SMTP id n21csp1123426vsb; Sun, 29 Jan 2017 09:45:20 -0800 (PST) X-Received: by 10.28.46.73 with SMTP id u70mr10498724wmu.54.1485711920235; Sun, 29 Jan 2017 09:45:20 -0800 (PST) Return-Path: Received: from ffbox0-bg.mplayerhq.hu (ffbox0-bg.ffmpeg.org. [79.124.17.100]) by mx.google.com with ESMTP id n9si6562660wra.117.2017.01.29.09.45.19; Sun, 29 Jan 2017 09:45:20 -0800 (PST) Received-SPF: pass (google.com: domain of ffmpeg-devel-bounces@ffmpeg.org designates 79.124.17.100 as permitted sender) client-ip=79.124.17.100; Authentication-Results: mx.google.com; dkim=neutral (body hash did not verify) header.i=@fripost.org; spf=pass (google.com: domain of ffmpeg-devel-bounces@ffmpeg.org designates 79.124.17.100 as permitted sender) smtp.mailfrom=ffmpeg-devel-bounces@ffmpeg.org Received: from [127.0.1.1] (localhost [127.0.0.1]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTP id 64A6C6899C1; Sun, 29 Jan 2017 19:45:15 +0200 (EET) X-Original-To: ffmpeg-devel@ffmpeg.org Delivered-To: ffmpeg-devel@ffmpeg.org Received: from outgoing.fripost.org (giraff.fripost.org [178.16.208.44]) by ffbox0-bg.mplayerhq.hu (Postfix) with ESMTPS id 311C668A2CA for ; Sun, 29 Jan 2017 19:45:09 +0200 (EET) Received: from localhost (localhost [127.0.0.1]) by outgoing.fripost.org (Postfix) with ESMTP id EC304A5A1F4 for ; Sun, 29 Jan 2017 18:45:10 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=fripost.org; h= content-disposition:content-type:content-type:mime-version :message-id:subject:subject:from:from:date:date; s=20140703; t= 1485711910; x=1487526311; bh=n40rOc8fUkCVH5XhLLvgqMn/gjv5RTd/4bN 9cddMJVk=; b=nMrwRohNAU565PRSpkiRBz7mtEivQcZ7E30nrC1a30vBiqzl94g aAmoaIs8sOuytTLTk7mouB94JHklhG1MqBz7l4fK5zDCt71HC5I1S6jFm8cDd+1X hm/lkXVByN3NZkrl2Bo2Gho05pe2TC1g96rT536lOP2azvn6oc3tUn70= X-Virus-Scanned: Debian amavisd-new at fripost.org Received: from outgoing.fripost.org ([127.0.0.1]) by localhost (giraff.fripost.org [127.0.0.1]) (amavisd-new, port 10040) with LMTP id rRLUyehugTu1 for ; Sun, 29 Jan 2017 18:45:10 +0100 (CET) Received: from smtp.fripost.org (unknown [172.16.0.6]) by outgoing.fripost.org (Postfix) with ESMTP id B3D94A5A1ED for ; Sun, 29 Jan 2017 18:45:10 +0100 (CET) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) by smtp.fripost.org (Postfix) with ESMTPSA id 391A329B24E6 for ; Sun, 29 Jan 2017 18:45:10 +0100 (CET) Received: (qmail 18706 invoked from network); 29 Jan 2017 17:22:57 -0000 Received: from localhost (HELO aetey.se) (eh1ba719@127.0.0.1) by mail with ESMTPA; 29 Jan 2017 17:22:57 -0000 Date: Sun, 29 Jan 2017 18:44:59 +0100 From: u-9iep@aetey.se To: FFmpeg development discussions and patches Message-ID: <20170129174458.GS1516@example.net> MIME-Version: 1.0 Content-Disposition: inline Subject: [FFmpeg-devel] [PATCH 3/3] libavcodec/cinepak.c: fix a wrong (inverted) misleading comment X-BeenThere: ffmpeg-devel@ffmpeg.org X-Mailman-Version: 2.1.20 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" Attaching the new version. Regards, Rune From f2041c0aaa5209e5d52649f741b6ee1dbc7e9021 Mon Sep 17 00:00:00 2001 From: Rl Date: Sun, 29 Jan 2017 18:28:25 +0100 Subject: [PATCH 3/3] libavcodec/cinepak.c: fix a wrong (inverted) misleading comment Make the comment message understandable and correct. --- libavcodec/cinepak.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/cinepak.c b/libavcodec/cinepak.c index 737462bd9c..d657e9c0c1 100644 --- a/libavcodec/cinepak.c +++ b/libavcodec/cinepak.c @@ -155,8 +155,8 @@ static int cinepak_decode_vectors (CinepakContext *s, cvid_strip *strip, } } } -/* to get the correct picture for not-multiple-of-4 cases let us fill - * each block from the bottom up, thus possibly overwriting the top line +/* to get the correct picture for not-multiple-of-4 cases let us fill each + * block from the bottom up, thus possibly overwriting the bottommost line * more than once but ending with the correct data in place * (instead of in-loop checking) */