Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pvr] bye, bye libXBMC_pvr.cpp #11109

Merged
merged 3 commits into from
Dec 11, 2016
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
5 changes: 0 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,6 @@ cmake_install.cmake
/lib/addons/library.kodi.guilib/project/VS2010Express/Debug
/lib/addons/library.xbmc.addon/Makefile
/lib/addons/library.kodi.adsp/Makefile
/lib/addons/library.xbmc.pvr/Makefile
/lib/addons/library.xbmc.codec/Makefile
/lib/addons/library.kodi.peripheral/Makefile
/lib/addons/library.kodi.game/Makefile
Expand All @@ -159,8 +158,6 @@ cmake_install.cmake
/lib/addons/library.kodi.adsp/project/VS2010Express/Debug
/lib/addons/library.xbmc.codec/project/VS2010Express/Release
/lib/addons/library.xbmc.codec/project/VS2010Express/Debug
/lib/addons/library.xbmc.pvr/project/VS2010Express/Release
/lib/addons/library.xbmc.pvr/project/VS2010Express/Debug
/lib/addons/library.kodi.audioengine/Makefile
/lib/addons/library.kodi.audioengine/project/VS2010Express/Release/
/lib/addons/library.kodi.audioengine/project/VS2010Express/Debug/
Expand Down Expand Up @@ -551,8 +548,6 @@ lib/cpluff/stamp-h1
/addons/library.xbmc.codec/libXBMC_codec.lib
/addons/library.kodi.guilib/libKODI_guilib.dll
/addons/library.kodi.guilib/libKODI_guilib.lib
/addons/library.xbmc.pvr/libXBMC_pvr.dll
/addons/library.xbmc.pvr/libXBMC_pvr.lib
/addons/library.kodi.audioengine/libKODI_audioengine.dll
/addons/library.kodi.audioengine/libKODI_audioengine.lib

Expand Down
2 changes: 0 additions & 2 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,6 @@ LIBADDON_DIRS=\
lib/addons/library.kodi.adsp \
lib/addons/library.kodi.audioengine \
lib/addons/library.xbmc.codec \
lib/addons/library.xbmc.pvr \
lib/addons/library.kodi.guilib \
lib/addons/library.kodi.inputstream \
lib/addons/library.kodi.peripheral \
Expand Down Expand Up @@ -368,7 +367,6 @@ libaddon: exports
$(MAKE) -C lib/addons/library.kodi.game
$(MAKE) -C lib/addons/library.kodi.guilib
$(MAKE) -C lib/addons/library.kodi.peripheral
$(MAKE) -C lib/addons/library.xbmc.pvr
$(MAKE) -C lib/addons/library.kodi.inputstream
dvdpcodecs: dllloader
$(MAKE) -C lib/libdvd
Expand Down
1 change: 0 additions & 1 deletion Makefile.include.in
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ INCLUDES+=-I@abs_top_srcdir@/addons/library.kodi.guilib
INCLUDES+=-I@abs_top_srcdir@/addons/library.xbmc.addon
INCLUDES+=-I@abs_top_srcdir@/addons/library.kodi.adsp
INCLUDES+=-I@abs_top_srcdir@/addons/library.kodi.audioengine
INCLUDES+=-I@abs_top_srcdir@/addons/library.xbmc.pvr
INCLUDES+=-I@abs_top_srcdir@/addons/library.xbmc.codec
INCLUDES+=$(sort @INCLUDES@)
INCLUDES+=-I@abs_top_srcdir@/xbmc/linux
Expand Down
4 changes: 0 additions & 4 deletions addons/library.xbmc.pvr/.gitignore

This file was deleted.

1 change: 0 additions & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2198,7 +2198,6 @@ OUTPUT_FILES="Makefile \
lib/addons/library.kodi.game/Makefile \
lib/addons/library.kodi.guilib/Makefile \
lib/addons/library.kodi.peripheral/Makefile \
lib/addons/library.xbmc.pvr/Makefile \
lib/addons/library.kodi.inputstream/Makefile \
tools/Linux/kodi.sh \
tools/Linux/kodi-standalone.sh \
Expand Down
2 changes: 1 addition & 1 deletion lib/addons/library.kodi.adsp/libKODI_adsp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
#endif

using namespace std;
using namespace V1::KodiAPI::AudioDSP;
using namespace KodiAPI::V1::AudioDSP;

extern "C"
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
#endif

using namespace std;
using namespace V1::KodiAPI::AudioEngine;
using namespace KodiAPI::V1::AudioEngine;

#define LIBRARY_NAME "libKODI_audioengine"

Expand Down
2 changes: 1 addition & 1 deletion lib/addons/library.kodi.game/libKODI_game.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ DLLEXPORT CB_GameLib* GAME_register_me(AddonCB* frontend)
fprintf(stderr, "ERROR: GAME_register_frontend is called with NULL handle!!!\n");
else
{
cb = frontend->GameLib_RegisterMe(frontend->addonData);
cb = static_cast<CB_GameLib*>(frontend->GameLib_RegisterMe(frontend->addonData));
if (!cb)
fprintf(stderr, "ERROR: GAME_register_frontend can't get callback table from frontend!!!\n");
}
Expand Down
2 changes: 1 addition & 1 deletion lib/addons/library.kodi.guilib/libKODI_guilib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
#endif

using namespace std;
using namespace V1::KodiAPI::GUI;
using namespace KodiAPI::V1::GUI;

extern "C"
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
#endif

using namespace std;
using namespace V1::KodiAPI::InputStream;
using namespace KodiAPI::V1::InputStream;

extern "C"
{
Expand Down
2 changes: 1 addition & 1 deletion lib/addons/library.kodi.peripheral/libKODI_peripheral.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ DLLEXPORT CB_PeripheralLib* PERIPHERAL_register_me(AddonCB* frontend)
fprintf(stderr, "ERROR: PERIPHERAL_register_frontend is called with NULL handle!!!\n");
else
{
cb = frontend->PeripheralLib_RegisterMe(frontend->addonData);
cb = static_cast<CB_PeripheralLib*>(frontend->PeripheralLib_RegisterMe(frontend->addonData));
if (!cb)
fprintf(stderr, "ERROR: PERIPHERAL_register_frontend can't get callback table from frontend!!!\n");
}
Expand Down
2 changes: 1 addition & 1 deletion lib/addons/library.xbmc.addon/libXBMC_addon.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@

using namespace std;
using namespace ADDON;
using namespace V1::KodiAPI::AddOn;
using namespace KodiAPI::V1::AddOn;

extern "C"
{
Expand Down
2 changes: 1 addition & 1 deletion lib/addons/library.xbmc.codec/libXBMC_codec.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
#endif

using namespace std;
using namespace V1::KodiAPI::Codec;
using namespace KodiAPI::V1::Codec;

extern "C"
{
Expand Down
3 changes: 0 additions & 3 deletions lib/addons/library.xbmc.pvr/CMakeLists.txt

This file was deleted.

29 changes: 0 additions & 29 deletions lib/addons/library.xbmc.pvr/Makefile.in

This file was deleted.

200 changes: 0 additions & 200 deletions lib/addons/library.xbmc.pvr/libXBMC_pvr.cpp

This file was deleted.

Loading