Skip to content

Commit

Permalink
[pyFPS] add DEFAULT_STATUS flag in binding
Browse files Browse the repository at this point in the history
  • Loading branch information
kyohoon-ahn committed Nov 18, 2024
1 parent baec4ca commit dded157
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions python_module/CacaoProcessTools.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ PYBIND11_MODULE(CacaoProcessTools, m)
.value("DEFAULT_OUTPUT", FPS_flags::DEFAULT_OUTPUT)
.value("DEFAULT_INPUT_STREAM", FPS_flags::DEFAULT_INPUT_STREAM)
.value("DEFAULT_OUTPUT_STREAM", FPS_flags::DEFAULT_OUTPUT_STREAM)
.value("DEFAULT_STATUS", FPS_flags::DEFAULT_STATUS)
.export_values();


Expand Down
1 change: 1 addition & 0 deletions python_module/pyFps.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ enum FPS_flags : uint64_t
DEFAULT_OUTPUT = FPFLAG_DEFAULT_OUTPUT,
DEFAULT_INPUT_STREAM = FPFLAG_DEFAULT_INPUT_STREAM,
DEFAULT_OUTPUT_STREAM = FPFLAG_DEFAULT_OUTPUT_STREAM,
DEFAULT_STATUS = FPFLAG_DEFAULT_STATUS,
};

class pyFps
Expand Down

0 comments on commit dded157

Please sign in to comment.