Skip to content

Commit

Permalink
Revert C++ version to 11
Browse files Browse the repository at this point in the history
  • Loading branch information
disa6302 committed Apr 4, 2023
1 parent 156e482 commit 49cc209
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/CMake;${CMAKE_MODULE_PATH}")
include(Utilities)
project(KinesisVideoProducerCpp)

set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD 11)
include(GNUInstallDirs)

# User Flags
Expand Down
4 changes: 2 additions & 2 deletions src/gstreamer/gstkvssink.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1044,11 +1044,11 @@ gst_kvs_sink_get_property(GObject *object, guint prop_id, GValue *value,
break;

case PROP_SERVICE_CONNECTION_TIMEOUT:
g_value_set_uint (value, kvssink->stop_stream_timeout);
g_value_set_uint (value, kvssink->service_connection_timeout);
break;

case PROP_SERVICE_COMPLETION_TIMEOUT:
g_value_set_uint (value, kvssink->stop_stream_timeout);
g_value_set_uint (value, kvssink->service_completion_timeout);
break;

case PROP_CREDENTIAL_FILE_PATH:
Expand Down

0 comments on commit 49cc209

Please sign in to comment.