From 218bfe8ed800173279ede2d9028fd9a5c33d12e4 Mon Sep 17 00:00:00 2001 From: Jochen Topf Date: Sun, 3 Jan 2021 16:45:26 +0100 Subject: [PATCH] Add optional LZ4 and ZSTD compressed data blocks to proto file --- src/fileformat.proto | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/fileformat.proto b/src/fileformat.proto index 632215a..518e1bb 100644 --- a/src/fileformat.proto +++ b/src/fileformat.proto @@ -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