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,8 +597,7 @@ static inline CopyRet copy_frame(AVCodecContext *avctx,
for (sY = 0; sY < height; dY++, sY++) {
memcpy(&(dst[dY * dStride]), &(src[sY * sStride]), bwidth);
if (interlaced)
dY++;
dY++;
}
} else {
av_image_copy_plane(dst, dStride, src, sStride, bwidth, height);
......
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