-
Notifications
You must be signed in to change notification settings - Fork 372
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MT#54294 convert cudecs usage to plugin
*) Remove packaging for -gpu packages *) Remove build profile restrictions, except for the build dependency itself *) Remove script to generate dh fragments for -gpu packages *) Convert --cudecs switch to a path argument pointing to the .so *) Don't link against libcudecs during build *) Only include the single types.h header needed for usage as a plugin *) Resolve all symbols during startup after loading the .so Change-Id: Ide99eec2156d5d3be8c40594391cb1603add4b16
- Loading branch information
Showing
8 changed files
with
60 additions
and
147 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,7 @@ | ||
ifneq (,$(filter pkg.ngcp-rtpengine.cudecs,${DEB_BUILD_PROFILES})) | ||
ifneq (,$(wildcard $(CUDECS_HOME)/usr/include/cudecs/g711opus.h)) | ||
CFLAGS+= -DHAVE_CUDECS -I$(CUDECS_HOME)/usr/include | ||
LDLIBS+= -L$(CUDECS_HOME)/usr/lib -lcudecs | ||
else ifneq (,$(wildcard /usr/include/cudecs/g711opus.h)) | ||
CFLAGS+= -DHAVE_CUDECS | ||
LDLIBS+= -lcudecs | ||
endif | ||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters