mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-24 02:24:07 +00:00
Fix hash message with monochrome
This commit is contained in:
parent
1d436844da
commit
c9e48f253d
|
@ -1400,7 +1400,7 @@ static void add_checksum(encoder_state_t * const state)
|
|||
|
||||
WRITE_U(stream, 2 + num_colors * 4, 8, "size");
|
||||
WRITE_U(stream, 2, 8, "hash_type"); // 2 = checksum
|
||||
WRITE_U(stream, 0, 1, "dph_sei_single_component_flag");
|
||||
WRITE_U(stream, num_colors==1, 1, "dph_sei_single_component_flag");
|
||||
WRITE_U(stream, 0, 7, "dph_sei_reserved_zero_7bits");
|
||||
|
||||
for (int i = 0; i < num_colors; ++i) {
|
||||
|
@ -1418,7 +1418,7 @@ static void add_checksum(encoder_state_t * const state)
|
|||
|
||||
WRITE_U(stream, 2 + num_colors * 16, 8, "size");
|
||||
WRITE_U(stream, 0, 8, "hash_type"); // 0 = md5
|
||||
WRITE_U(stream, 0, 1, "dph_sei_single_component_flag");
|
||||
WRITE_U(stream, num_colors==1, 1, "dph_sei_single_component_flag");
|
||||
WRITE_U(stream, 0, 7, "dph_sei_reserved_zero_7bits");
|
||||
|
||||
for (int i = 0; i < num_colors; ++i) {
|
||||
|
|
Loading…
Reference in a new issue