mirror of
https://github.com/dnet/pySSTV.git
synced 2026-01-21 16:00:27 +01:00
Switched Robot 36 channel order to CrCb.
This commit is contained in:
parent
de1d2ba891
commit
974118473b
|
|
@ -94,7 +94,7 @@ class Robot36(ColorSSTV):
|
|||
|
||||
def encode_line(self, line):
|
||||
pixels = [self.yuv[col, line] for col in range(self.WIDTH)]
|
||||
channel = (line % 2) + 1
|
||||
channel = 2 - (line % 2)
|
||||
y_pixel_time = self.Y_SCAN / self.WIDTH
|
||||
uv_pixel_time = self.C_SCAN / self.WIDTH
|
||||
return chain(
|
||||
|
|
|
|||
Loading…
Reference in a new issue