static_codec_info.proto 1006 B

1234567891011121314151617
  1. package NCodecs;
  2. message TStaticCodecInfo {
  3. message TDebugInfo {
  4. optional string CodecName = 1; // the exact codec variant name
  5. optional uint64 Timestamp = 2; // when the codec was built
  6. optional string RevisionInfo = 3; // the arcadia revision info
  7. optional float SampleSizeMultiplier = 4; // how the default sample size was modified to improve compression
  8. optional float Compression = 5; // the compression on the training set ((raw_size - coded_size) / raw_size)
  9. optional string TrainingSetComment = 6; // a human readable description of the training set
  10. optional string TrainingSetResId = 7; // the training set sandbox resource id
  11. optional uint64 StoredCodecHash = 8; // cityhash64(data)
  12. }
  13. optional bytes StoredCodec = 1; // the data of the codec
  14. optional TDebugInfo DebugInfo = 2; // misc debug info which could be useful in finding whereabouts later
  15. }