Commit 3583eb93 authored by Philip Langdale's avatar Philip Langdale

CrystalHD: Remove redundant interlaced check.

Signed-off-by: 's avatarPhilip Langdale <philipl@overt.org>
parent a1749eb3
...@@ -597,7 +597,6 @@ static inline CopyRet copy_frame(AVCodecContext *avctx, ...@@ -597,7 +597,6 @@ static inline CopyRet copy_frame(AVCodecContext *avctx,
for (sY = 0; sY < height; dY++, sY++) { for (sY = 0; sY < height; dY++, sY++) {
memcpy(&(dst[dY * dStride]), &(src[sY * sStride]), bwidth); memcpy(&(dst[dY * dStride]), &(src[sY * sStride]), bwidth);
if (interlaced)
dY++; dY++;
} }
} else { } else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment