Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/camera_streaming/camera_streaming.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -88,12 +88,12 @@ int main(int argc, char** argv)
fpsdk::common::app::StacktraceHelper stacktrace;
#endif

// We need three things (see CamStreamParams):
// We need four things (see CamStreamParams):
//
// 1. The sensor (hostname, IP address)
// 2. Which camera (CAM1, CAM2, ...)
// 3. Which data (HIRES_VID, LORES_IMG, ...)
// 4. Throttle value
// 4. Throttle value (must be 1 for ..._VID, can be > 1 for ..._IMG)
//
if (argc != 5) {
ERROR("Missing arguments!");
Expand Down
3 changes: 3 additions & 0 deletions fpsdk_apps/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ project(fpsdk_apps
)

set(_unused "${FPSDK_BUILD_TESTING}") # suppress warning in some setups
set(_unused "${FPSDK_USE_PROJ}") # suppress warning
set(_unused "${FPSDK_USE_FFMPEG}") # suppress warning
set(_unused "${FPSDK_USE_BZ2}") # suppress warning
set(_unused "${CMAKE_C_COMPILER}") # suppress warning in some setups


Expand Down
Loading