[SOLVED] BT656 8bit conversion to 10bit

Status
Not open for further replies.

Scrts

Member level 3
Joined
Mar 17, 2009
Messages
60
Helped
15
Reputation
30
Reaction score
15
Trophy points
1,288
Location
Kaunas, Lithuania
Activity points
1,604
Hello,
I need to create SDI(serial digital interface) output from BT656
signal, which is 8bit wide. The problem is, that SDI is 10bits wide, so I
need BT656 8bit conversion to 10bit. Conversion of EAV and SAV sequences are clear:
FF -> 3FF
00 -> 000
00 -> 000
But what about all the further data? Maybe I can leave only 8MSB bits and
leave 2LSB bits tied to 0? And ancillary data? No problems for that too?

Thanks
 

Solved:
assert LSB bits to MSB bits. E.g.:
Data[1] <= Data[9];
Data[0] <= Data[8];

Works fine.
 

Status
Not open for further replies.
Cookies are required to use this site. You must accept them to continue using the site. Learn more…