Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(372)

Unified Diff: firmware/include/bmpblk_header.h

Issue 6482001: New commandline args are clearer, and prepare for compression. (Closed) Base URL: http://git.chromium.org/git/vboot_reference.git@master
Patch Set: Move bmpblk_util.h out of firmware/include Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tests/bitmaps/TestBmpBlock.py » ('j') | utility/bmpblk_util.c » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: firmware/include/bmpblk_header.h
diff --git a/firmware/include/bmpblk_header.h b/firmware/include/bmpblk_header.h
index 3aa981ce06b47b487c77367ae38595b177d298a6..22a7847c75deaf13b22b85a03cb9535dcf5dd3e4 100644
--- a/firmware/include/bmpblk_header.h
+++ b/firmware/include/bmpblk_header.h
@@ -94,7 +94,7 @@ typedef struct ImageInfo {
uint32_t width; /* Width of the image */
uint32_t height; /* Height of the image */
uint32_t format; /* File format of the image */
- uint32_t compression; /* Compression method to the image file */
+ uint32_t compression; /* Compression method for the image file */
uint32_t original_size; /* Size of the original uncompressed image */
uint32_t compressed_size; /* Size of the compressed image */
uint32_t reserved;
@@ -118,6 +118,7 @@ typedef enum Compression {
COMPRESS_NONE = 0,
COMPRESS_EFIv1, /* The x86 BIOS only supports this */
COMPRESS_TBD, /* Only on ARM? */
+ MAX_COMPRESS,
Randall Spangler 2011/02/10 21:45:10 COMPRESS_MAX, for consistency?
} Compression;
#endif /* VBOOT_REFERENCE_BMPBLK_HEADER_H_ */
« no previous file with comments | « no previous file | tests/bitmaps/TestBmpBlock.py » ('j') | utility/bmpblk_util.c » ('J')

Powered by Google App Engine
This is Rietveld 408576698