-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix chroma shift and bump version to 2.4b
- Loading branch information
Showing
5 changed files
with
11 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
/* GCVideo DVI Firmware | ||
Copyright (C) 2015-2017, Ingo Korb <[email protected]> | ||
Copyright (C) 2015-2018, Ingo Korb <[email protected]> | ||
All rights reserved. | ||
Redistribution and use in source and binary forms, with or without | ||
|
@@ -80,7 +80,7 @@ void screen_about(void) { | |
osd_putsat(14, 11, "GCVideo DVI v" VERSION); | ||
} | ||
} | ||
osd_putsat(12, 13, "Copyright \013 2015-2017"); | ||
osd_putsat(12, 13, "Copyright \013 2015-2018"); | ||
osd_putsat(16, 14, "by Ingo Korb"); | ||
osd_putsat(15, 15, "[email protected]"); | ||
osd_gotoxy(14, 17); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
---------------------------------------------------------------------------------- | ||
-- GCVideo DVI HDL | ||
-- Copyright (C) 2014-2017, Ingo Korb <[email protected]> | ||
-- Copyright (C) 2014-2018, Ingo Korb <[email protected]> | ||
-- All rights reserved. | ||
-- | ||
-- Redistribution and use in source and binary forms, with or without | ||
|
@@ -58,6 +58,7 @@ architecture Behavioral of convert_yuv_to_rgb is | |
signal rtemp : signed(18 downto 0) := (others => '0'); -- Cr for R | ||
signal gtempr: signed(18 downto 0) := (others => '0'); -- Cr for G | ||
signal gtempb: signed(18 downto 0) := (others => '0'); -- Cb for G | ||
signal gtmpb2: signed(18 downto 0) := (others => '0'); -- Cb for G, delayed | ||
signal btemp : signed(18 downto 0) := (others => '0'); -- Cb for B | ||
|
||
signal rsum : signed(18 downto 0) := (others => '0'); -- (Y + rtemp) / 256 | ||
|
@@ -127,11 +128,12 @@ begin | |
-- pipeline stage 2: add/subtract | ||
rsum <= (ystore + rtemp) / 256; | ||
gsumtemp <= ystore - gtempr; | ||
gtmpb2 <= gtempb; | ||
bsum <= (ystore + btemp) / 256; | ||
|
||
-- pipeline stage 3: clipping r/b, subtract g | ||
rout <= clip(rsum); | ||
gsum <= (gsumtemp - gtempb) / 256; | ||
gsum <= (gsumtemp - gtmpb2) / 256; | ||
bout <= clip(bsum); | ||
|
||
-- pipeline stage 4: clip g, output | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,7 +71,7 @@ should contain README.md files with further information. | |
# Licence # | ||
|
||
<pre> | ||
Copyright (C) 2014-2017, Ingo Korb <[email protected]> | ||
Copyright (C) 2014-2018, Ingo Korb <[email protected]> | ||
All rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
|