mirror of
https://github.com/aaru-dps/Aaru.VideoNow.git
synced 2025-12-16 19:24:36 +00:00
Fix mirrored image.
This commit is contained in:
@@ -535,8 +535,14 @@ namespace DiscImageChef.VideoNow
|
|||||||
index += 120;
|
index += 120;
|
||||||
}
|
}
|
||||||
|
|
||||||
frameBuffer = videoFs.ToArray();
|
frameBuffer = new byte[videoFs.Length];
|
||||||
Array.Reverse(frameBuffer);
|
byte[] frameBuffer2 = videoFs.ToArray();
|
||||||
|
|
||||||
|
for(int row = 0; row < 80; row++)
|
||||||
|
{
|
||||||
|
for(int p = 0; p < 432; p++)
|
||||||
|
frameBuffer[row * 432 + p] = frameBuffer2[row * 432 + (431 - p)];
|
||||||
|
}
|
||||||
|
|
||||||
return frameBuffer;
|
return frameBuffer;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user