diff mbox

[FFmpeg-devel,3/3] libavcodec/cinepak.c: fix a wrong (inverted) misleading comment

Message ID 20170129174458.GS1516@example.net
State Accepted
Commit 1835ed19bb16f2963ef566560a2b4faf3d754fd2
Headers show

Commit Message

u-9iep@aetey.se Jan. 29, 2017, 5:44 p.m. UTC
Attaching the new version.

Regards,
Rune
From f2041c0aaa5209e5d52649f741b6ee1dbc7e9021 Mon Sep 17 00:00:00 2001
From: Rl <addr-see-the-website@aetey.se>
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(-)

Comments

Michael Niedermayer Feb. 7, 2017, 10:27 p.m. UTC | #1
On Sun, Jan 29, 2017 at 06:44:59PM +0100, u-9iep@aetey.se wrote:
> Attaching the new version.
> 
> Regards,
> Rune

>  cinepak.c |    4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> def45a2ab19cda70cad0618033a002298cbae056  0003-libavcodec-cinepak.c-fix-a-wrong-inverted-misleading.patch
> From f2041c0aaa5209e5d52649f741b6ee1dbc7e9021 Mon Sep 17 00:00:00 2001
> From: Rl <addr-see-the-website@aetey.se>
> Date: Sun, 29 Jan 2017 18:28:25 +0100
> Subject: [PATCH 3/3] libavcodec/cinepak.c: fix a wrong (inverted) misleading
>  comment

applied

thx

[...]
diff mbox

Patch

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) */