Skip to content

[Plugins] Adjusted PlayerInfo in wpe-plugins #206

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
18 changes: 18 additions & 0 deletions package/wpe/wpeframework-plugins/Config.in
Original file line number Diff line number Diff line change
Expand Up @@ -557,6 +557,24 @@ config BR2_PACKAGE_WPEFRAMEWORK_PLAYERINFO
help
PlayerInfo Plugin provide the information about the platform codec supports

if BR2_PACKAGE_WPEFRAMEWORK_PLAYERINFO
config BR2_PACKAGE_WPEFRAMEWORK_PLAYERINFO_DOLBY
bool "Dolby support"
default n

if BR2_PACKAGE_WPEFRAMEWORK_PLAYERINFO_DOLBY

choice BR2_PACKAGE_WPEFRAMEWORK_PLAYERINFO_DOLBY_IMPLEMENTATION
prompt "Dolby implementation"
default BR2_PACKAGE_WPEFRAMEWORK_PLAYERINFO_DOLBY_IMPLEMENTATION_AMLOGIC

config BR2_PACKAGE_WPEFRAMEWORK_PLAYERINFO_DOLBY_IMPLEMENTATION_AMLOGIC
bool "AMLogic"

endchoice

endif
endif

config BR2_PACKAGE_WPEFRAMEWORK_POWER
select BR2_PACKAGE_WPEFRAMEWORK_PLUGINS
Expand Down
6 changes: 6 additions & 0 deletions package/wpe/wpeframework-plugins/wpeframework-plugins.mk
Original file line number Diff line number Diff line change
Expand Up @@ -553,6 +553,12 @@ endif

ifeq ($(BR2_PACKAGE_WPEFRAMEWORK_PLAYERINFO),y)
WPEFRAMEWORK_PLUGINS_CONF_OPTS += -DPLUGIN_PLAYERINFO=ON
ifeq ($(BR2_PACKAGE_WPEFRAMEWORK_PLAYERINFO_DOLBY),y)
WPEFRAMEWORK_PLUGINS_CONF_OPTS += -DDOLBY_SUPPORT=ON
ifeq ($(BR2_PACKAGE_WPEFRAMEWORK_PLAYERINFO_DOLBY_IMPLEMENTATION_AMLOGIC),y)
WPEFRAMEWORK_PLUGINS_CONF_OPTS += -DDOLBY_IMPLEMENTATION="AMLogic"
endif
endif
endif

ifeq ($(BR2_PACKAGE_WPEFRAMEWORK_POWER),y)
Expand Down