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

[addon] bye, bye libXBMC_codec.cpp #11164

Merged
merged 1 commit into from
Dec 13, 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 @@ -148,12 +148,9 @@ cmake_install.cmake
/lib/addons/library.kodi.guilib/project/VS2010Express/Release
/lib/addons/library.kodi.guilib/project/VS2010Express/Debug
/lib/addons/library.xbmc.addon/Makefile
/lib/addons/library.xbmc.codec/Makefile
/lib/addons/library.kodi.game/Makefile
/lib/addons/library.xbmc.addon/project/VS2010Express/Release
/lib/addons/library.xbmc.addon/project/VS2010Express/Debug
/lib/addons/library.xbmc.codec/project/VS2010Express/Release
/lib/addons/library.xbmc.codec/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 @@ -534,8 +531,6 @@ lib/cpluff/stamp-h1

/addons/library.xbmc.addon/libXBMC_addon.dll
/addons/library.xbmc.addon/libXBMC_addon.lib
/addons/library.xbmc.codec/libXBMC_codec.dll
/addons/library.xbmc.codec/libXBMC_codec.lib
/addons/library.kodi.guilib/libKODI_guilib.dll
/addons/library.kodi.guilib/libKODI_guilib.lib
/addons/library.kodi.audioengine/libKODI_audioengine.dll
Expand Down
2 changes: 0 additions & 2 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,6 @@ LIB_DIRS=\
LIBADDON_DIRS=\
lib/addons/library.xbmc.addon \
lib/addons/library.kodi.audioengine \
lib/addons/library.xbmc.codec \
lib/addons/library.kodi.guilib \
lib/addons/library.kodi.game \

Expand Down Expand Up @@ -359,7 +358,6 @@ dllloader: exports xbmc/cores/DllLoader/dllloader.a
libaddon: exports
$(MAKE) -C lib/addons/library.xbmc.addon
$(MAKE) -C lib/addons/library.kodi.audioengine
$(MAKE) -C lib/addons/library.xbmc.codec
$(MAKE) -C lib/addons/library.kodi.game
$(MAKE) -C lib/addons/library.kodi.guilib
dvdpcodecs: dllloader
Expand Down
1 change: 0 additions & 1 deletion Makefile.include.in
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ INCLUDES+=-I@abs_top_srcdir@/xbmc/addons/kodi-addon-dev-kit/include
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.audioengine
INCLUDES+=-I@abs_top_srcdir@/addons/library.xbmc.codec
INCLUDES+=$(sort @INCLUDES@)
INCLUDES+=-I@abs_top_srcdir@/xbmc/linux
INCLUDES+=-I@abs_top_srcdir@/xbmc/cores/VideoPlayer
Expand Down
1 change: 0 additions & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2193,7 +2193,6 @@ OUTPUT_FILES="Makefile \
xbmc/windowing/egl/Makefile \
lib/addons/library.xbmc.addon/Makefile \
lib/addons/library.kodi.audioengine/Makefile \
lib/addons/library.xbmc.codec/Makefile \
lib/addons/library.kodi.game/Makefile \
lib/addons/library.kodi.guilib/Makefile \
tools/Linux/kodi.sh \
Expand Down
2 changes: 0 additions & 2 deletions lib/addons/library.xbmc.codec/CMakeLists.txt

This file was deleted.

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

This file was deleted.

73 changes: 0 additions & 73 deletions lib/addons/library.xbmc.codec/libXBMC_codec.cpp

This file was deleted.

This file was deleted.

This file was deleted.

1 change: 0 additions & 1 deletion project/cmake/installdata/common/addons.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ addons/library.kodi.audioengine/*
addons/library.kodi.game/*
addons/library.kodi.guilib/*
addons/library.xbmc.addon/*
addons/library.xbmc.codec/*
addons/repository.xbmc.org/*
addons/webinterface.default/*
addons/screensaver.xbmc.builtin.dim/*
Expand Down
1 change: 0 additions & 1 deletion project/cmake/treedata/common/addons.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,3 @@ lib/addons/library.kodi.audioengine KODI_audioengine
lib/addons/library.kodi.game KODI_game
lib/addons/library.kodi.guilib KODI_guilib
lib/addons/library.xbmc.addon XBMC_addon
lib/addons/library.xbmc.codec XBMC_codec
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,6 @@ namespace V1
namespace Codec
{

typedef xbmc_codec_t (*CODECGetCodecByName)(const void* addonData, const char* strCodecName);

typedef struct CB_CODEC
{
CODECGetCodecByName GetCodecByName;
} CB_CodecLib;

class CAddonCallbacksCodec : public ADDON::IAddonInterface
{
public:
Expand Down
Loading