Skip to content

Commit

Permalink
Merge "tp: add handling of the language encoding zip flag" into main
Browse files Browse the repository at this point in the history
  • Loading branch information
LalitMaganti authored and Gerrit Code Review committed Nov 1, 2024
2 parents 0c01c75 + 7564e9e commit cebafef
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/trace_processor/util/zip_reader.cc
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,9 @@ enum GeneralPurposeBitFlag : uint32_t {
k8kSlidingDictionary = 1u << 1,
kShannonFaro = 1u << 2,
kDataDescriptor = 1u << 3,
kUnknown = ~((1u << 4) - 1),
kLangageEncoding = 1u << 11,
kUnknown = ~(kEncrypted | k8kSlidingDictionary | kShannonFaro |
kDataDescriptor | kLangageEncoding),
};

// Compression flags.
Expand Down

0 comments on commit cebafef

Please sign in to comment.