diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-08-17 19:50:17 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2019-08-18 22:44:39 +0200 |
commit | 64322709a908560f6d08ffc6f50a42f1c1be51dc (patch) | |
tree | 183d99512670704181cdb28123836d795cb28d2d /include/data_writer.h | |
parent | cfe80ff9045f33375f11a285098fb15ce214372a (diff) |
Restructure data writer around passing block_t structures
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'include/data_writer.h')
-rw-r--r-- | include/data_writer.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/include/data_writer.h b/include/data_writer.h index bd7532d..70ae879 100644 --- a/include/data_writer.h +++ b/include/data_writer.h @@ -21,11 +21,8 @@ enum { block, even if it is incomplete. */ DW_DONT_FRAGMENT = 0x01, - /* Intentionally write all blocks uncompressed. This implies - DW_DONT_FRAGMENT since sharing a fragment block with other files - would otherwise require the entire fragment block to be - uncompressed. */ - DW_DONT_COMPRESS = 0x03, + /* Intentionally write all blocks uncompressed. */ + DW_DONT_COMPRESS = 0x02, /* Make sure the first block of a file is alligned to device block size */ |