QuantizeParams.cpp 880 B

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