Skip to content

Commit

Permalink
Add optional LZ4 and ZSTD compressed data blocks to proto file
Browse files Browse the repository at this point in the history
  • Loading branch information
joto committed Jan 3, 2021
1 parent e5de634 commit 218bfe8
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/fileformat.proto
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,12 @@ message Blob {

// Formerly used for bzip2 compressed data. Deprecated in 2010.
optional bytes OBSOLETE_bzip2_data = 5 [deprecated=true]; // Don't reuse this tag number.

// For LZ4 compressed data (optional)
optional bytes lz4_data = 6;

// For ZSTD compressed data (optional)
optional bytes zstd_data = 7;
}

/* A file contains an sequence of fileblock headers, each prefixed by
Expand Down

0 comments on commit 218bfe8

Please sign in to comment.