Skip to content
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