mirror of
https://github.com/CCExtractor/ccextractor.git
synced 2024-12-25 20:32:10 +00:00
Minor mistake in bitsream fixed
This commit is contained in:
parent
407a40e32e
commit
ebd9fc4bfe
@ -1111,7 +1111,7 @@ void dtvcc_handle_SPC_SetPenColor(ccx_dtvcc_service_decoder *decoder, unsigned c
|
||||
int fg_opacity = (data[1] >> 6) & 0x03;
|
||||
int bg_color = (data[2] ) & 0x3f;
|
||||
int bg_opacity = (data[2] >> 6) & 0x03;
|
||||
int edge_color = (data[3] >> 6) & 0x3f;
|
||||
int edge_color = (data[3] ) & 0x3f;
|
||||
|
||||
ccx_common_logging.debug_ftn(CCX_DMT_708, " Foreground color: [%d] Foreground opacity: [%d]\n",
|
||||
fg_color, fg_opacity);
|
||||
|
Loading…
Reference in New Issue
Block a user