I ma trying to understand following paragraph:
start_time: This 40-bit field contains the start time of the event in Universal Time, Co-ordinated (UTC) and Modified Julian Date (MJD). This field is coded as 16 bits giving the 16 LSBs of MJD followed by 24 bits coded as 6 digits in 4-bit Binary Coded Decimal (BCD). If the start time is undefined (e.g. for an event in a NVOD reference service) all bits of the field are set to "1".
Example 1: 93/10/13 12:45:00
is coded as "0xC079124500
".
I want to convert 40-bit to date and time in java without using third party library.
Please help me on this.