diff mbox

[FFmpeg-devel] patch 3 (of 3): comment FIX in libavcodec/cinepak.c

Message ID 20170128161208.GN1516@example.net
State New
Headers show

Commit Message

u-9iep@aetey.se Jan. 28, 2017, 4:12 p.m. UTC
Fix a plainly wrong (inverted) misleading comment in the cinepak decoder.

No code changes.

I kindly ask to apply this fix, which of course was due from the beginning.

Attaching the patch.

Regards,
Rune
diff mbox

Patch

--- libavcodec/cinepak.c.orig	2017-01-28 17:00:37.000000000 +0100
+++ libavcodec/cinepak.c	2017-01-28 17:04:20.513123515 +0100
@@ -155,8 +155,8 @@ 
                 }
             }
         }
-/* 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) */