Skip to content
Open
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
2 changes: 1 addition & 1 deletion gst-plugin-smartvencbin/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pkg_check_modules(GST REQUIRED gstreamer-1.0>=${GST_VERSION_REQUIRED})
pkg_check_modules(GST_ALLOC REQUIRED gstreamer-allocators-1.0>=${GST_VERSION_REQUIRED})
pkg_check_modules(GST_VIDEO REQUIRED gstreamer-video-1.0>=${GST_VERSION_REQUIRED})
pkg_check_modules(GST_PBUTILS REQUIRED gstreamer-pbutils-1.0>=${GST_VERSION_REQUIRED})
pkg_check_modules(QCOM_VIDEO_CTRL REQUIRED qimsdk-smartvenc)
pkg_check_modules(QCOM_VIDEO_CTRL REQUIRED qcom-video-ctrl)
pkg_check_modules(GST_QCOM_VIDEO REQUIRED gstreamer-qcom-oss-video-1.0>=1.0.0)

# Generate configuration header file with plugin describing definitions
Expand Down
4 changes: 2 additions & 2 deletions gst-plugin-smartvencbin/smart-codec-engine.cc
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include <dlfcn.h>
#include <mutex>

#include <qimsdk-smartvenc/videoctrl.h>
#include <iot-core-algs/videoctrl.h>

struct _SmartCodecEngine {
std::mutex engine_lock;
Expand Down Expand Up @@ -45,7 +45,7 @@ gst_smartcodec_engine_new ()
SmartCodecEngine *engine = NULL;
::videoctrl::NewIEngine NewVideoCtrlEngine;

std::string libname = "libqimsdk-smartvenc.so." + std::string(VIDEO_CTRL_VERSION_MAJOR);
std::string libname = "libVideoCtrl.so." + std::string(VIDEO_CTRL_VERSION_MAJOR);

engine = g_new0 (SmartCodecEngine, 1);
g_return_val_if_fail (engine != NULL, NULL);
Expand Down
Loading