mirror of
https://github.com/dnet/pySSTV.git
synced 2026-04-21 06:03:43 +00:00
Switched Robot 36 channel order to CrCb.
This commit is contained in:
parent
de1d2ba891
commit
974118473b
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue