1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-13 21:28:01 +02:00

libavcodec/cinepak.c: fix a wrong (inverted) misleading comment

Make the comment message understandable and correct.
This commit is contained in:
Rl 2017-01-29 18:28:25 +01:00 committed by Michael Niedermayer
parent 91ed4e7196
commit 1835ed19bb

View File

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