Skip to content
Open
Show file tree
Hide file tree
Changes from 6 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 build_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ cd rfc
autoreconf -i
./configure --enable-rfctool=yes --enable-tr181set=yes
cd rfcapi
make librfcapi_la_CPPFLAGS="-I/usr/include/cjson"
make CXXFLAGS="-DUSE_IARMBUS" librfcapi_la_CPPFLAGS="-I/usr/include/cjson"
make install
export RFC_PATH=$ROOT/rfc

Expand Down
166 changes: 164 additions & 2 deletions ds/host.cpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*
* If not stated otherwise in this file or this component's LICENSE file the
* following copyright and licenses apply:

Check failure on line 3 in ds/host.cpp

View workflow job for this annotation

GitHub Actions / call-fossid-workflow / Fossid Annotate PR

FossID License Issue Detected

Source code with 'Apache-2.0' license found in local file 'ds/host.cpp' (Match: rdk/components/generic/devicesettings/rdk/components/generic/devicesettings/1907, 536 lines, url: https://code.rdkcentral.com/r/plugins/gitiles/rdk/components/generic/devicesettings/+archive/rdk-dev-1907.tar.gz, file: ds/host.cpp)
*
* Copyright 2016 RDK Management
* Copyright 2025 RDK Management
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -241,7 +241,6 @@
}
}


/**
* @fn bool Host::setPowerMode(int mode)
* @brief This API is used to change the power mode of the device.
Expand Down Expand Up @@ -913,6 +912,169 @@
printf ("%s:%d - Set Audio Mixer levels for audio input: %d with volume = %d\n", __PRETTY_FUNCTION__, __LINE__,aInput, volume);
}

/**
* @fn void Host::Register(IHDMIInEvents *listener)
* @brief This API is used to register the Events
*
* @return unint32_t
*/
uint32_t Host::Register(IHDMIInEvents *listener)
{
return 0;
}


/**
* @fn void Host::UnRegister(IHDMIInEvents *listener)
* @brief This API is used to UnRegister the Events
*
* @return unint32_t
*/
uint32_t Host::UnRegister(IHDMIInEvents *listener)
{
return 0;
}

/**
* @fn void Host::Register(ICompositeInEvents *Evtnotification)
* @brief This API is used to register the Events
*
* @return unint32_t
*/
uint32_t Host::Register(ICompositeInEvents *listener)
{
return 0;
}

/**
* @fn void Host::UnRegister(ICompositeInEvents *Evtnotification)
* @brief This API is used to UnRegister the Events
*
* @return unint32_t
*/
uint32_t Host::UnRegister(ICompositeInEvents *listener)
{
return 0;
}

/**
* @fn void Host::UnRegister(IDisplayDeviceEvents *Evtnotification)
* @brief This API is used to Register the Events
*
* @return unint32_t
*/
uint32_t Host::Register(IDisplayDeviceEvents *listener)
{
return 0;
}


/**
* @fn void Host::UnRegister(IDisplayDeviceEvents *Evtnotification)
* @brief This API is used to UnRegister the Events
*
* @return unint32_t
*/
uint32_t Host::UnRegister(IDisplayDeviceEvents *listener)
{
return 0;
}

/**
* @fn void Host::UnRegister(IDisplayEvents *Evtnotification)
* @brief This API is used to Register the Events
*
* @return unint32_t
*/
uint32_t Host::Register(IDisplayEvents *listener)
{
return 0;
}


/**
* @fn void Host::UnRegister(IDisplayEvents *Evtnotification)
* @brief This API is used to UnRegister the Events
*
* @return unint32_t
*/
uint32_t Host::UnRegister(IDisplayEvents *listener)
{
return 0;
}

/**
* @fn void Host::Register(IAudioOutputPortEvents *Evtnotification)
* @brief This API is used to Register the Events
*
* @return unint32_t
*/
uint32_t Host::Register(IAudioOutputPortEvents *listener)
{
return 0;
}


/**
* @fn void Host::UnRegister(IAudioOutputPortEvent *Evtnotification)
* @brief This API is used to UnRegister the Events
*
* @return unint32_t
*/
uint32_t Host::UnRegister(IAudioOutputPortEvents *listener)
{
return 0;
}

/**
* @fn void Host::Register(IVideoOutputPortEvents *Evtnotification)
* @brief This API is used to Register the Events
*
* @return unint32_t
*/
uint32_t Host::Register(IVideoOutputPortEvents *listener)
{
return 0;
}


/**
* @fn void Host::UnRegister(IVideoOutputPortEvents *Evtnotification)
* @brief This API is used to UnRegister the Events
*
* @return unint32_t
*/
uint32_t Host::UnRegister(IVideoOutputPortEvents *listener)
{
return 0;
}



/**
* @fn void Host::Register(IVideoDeviceEvents *Evtnotification)
* @brief This API is used to Register the Events
*
* @return unint32_t
*/
uint32_t Host::Register(IVideoDeviceEvents *listener)
{
return 0;
}


/**
* @fn void Host::UnRegister(IVideoDeviceEvents *Evtnotification)
* @brief This API is used to UnRegister the Events
*
* @return unint32_t
*/
uint32_t Host::UnRegister(IVideoDeviceEvents *listener)
{
return 0;
}



}

Expand Down
Loading
Loading