quantize_params.cc 888 B

1234567891011121314151617181920212223242526
  1. // // ******************************************************************
  2. // // /\ /| @File quantize_params.cc
  3. // // \ V/ @Brief
  4. // // | "") @Author lijinwen, ghz005@uni-trend.com.cn
  5. // // / | @Creation 2024-05-16
  6. // // / \\ @Modified 2024-06-24
  7. // // *(__\_\
  8. // // ******************************************************************
  9. #include "quantize_params.h"
  10. namespace Protocol
  11. {
  12. QuantizeParams::QuantizeParams(): level_option(), BitDepth(0)
  13. {
  14. // 初始化默认参数...
  15. }
  16. QuantizeParams::QuantizeParams(const QuantizeParams& quantize_params): level_option(quantize_params.level_option),
  17. BitDepth(quantize_params.BitDepth)
  18. {
  19. }
  20. QuantizeParams::~QuantizeParams() = default;
  21. }