Skip to content

Commit

Permalink
Fix missing argument for qfactor in encoder.hpp for MSVC
Browse files Browse the repository at this point in the history
  • Loading branch information
osamu620 committed Jul 16, 2021
1 parent 522d9f6 commit e3170b5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions source/core/interface/encoder.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,9 @@ class openhtj2k_encoder {

public:
#if defined(_MSC_VER)
__declspec(dllexport) openhtj2k_encoder(const char *, const std::vector<int32_t *> &input_buf,
siz_params &, cod_params &, qcd_params &);
__declspec(dllexport)
openhtj2k_encoder(const char *, const std::vector<int32_t *> &input_buf, siz_params &siz,
cod_params &cod, qcd_params &qcd, uint8_t qfactor = 0xFF);
__declspec(dllexport) size_t invoke();
__declspec(dllexport) ~openhtj2k_encoder();
#else
Expand Down

0 comments on commit e3170b5

Please sign in to comment.