Skip to content

Commit

Permalink
Fixed wrong type
Browse files Browse the repository at this point in the history
  • Loading branch information
Laky-64 committed Sep 23, 2023
1 parent 3ac427f commit fdc8267
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ if(DEFINED PY_VERSION_INFO)
set(IS_PYTHON TRUE)
endif()

project(ntgcalls VERSION 1.0.0.14 LANGUAGES C CXX)
project(ntgcalls VERSION 1.0.0.15 LANGUAGES C CXX)
add_compile_definitions(NTG_VERSION="${CMAKE_PROJECT_VERSION}")

find_package(Threads REQUIRED)
Expand Down
2 changes: 1 addition & 1 deletion ntgcalls/bindings/pythonapi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ PYBIND11_MODULE(ntgcalls, m) {

py::class_<ntgcalls::AudioDescription> audioWrapper(m, "AudioDescription", mediaWrapper);
audioWrapper.def(
py::init<ntgcalls::BaseMediaDescription::InputMode, uint16_t, uint8_t, uint8_t, std::string>(),
py::init<ntgcalls::BaseMediaDescription::InputMode, uint32_t, uint8_t, uint8_t, std::string>(),
py::arg("input_mode"),
py::arg("sample_rate"),
py::arg("bits_per_sample"),
Expand Down

0 comments on commit fdc8267

Please sign in to comment.