fe0fcb1d7b
OMXplayer uses openMAX on the RPi to play videos with hardware acceleration. Compared to using a gstreamer pipe, OMXplayer uses a complete "tunnel-mode", in which the video is piped (after demuxing) into the hardware, all the way down to the display, whereas gstreamer composes the video using the eglgles sink, which uses mem-to-mem copies. So, when playing a locally-stored 1080p video, OMXplayer averages 20% (with peaks up to ~30%, depending on the complexity of the video) CPU, while gstreamer bursts up to 40+% when playing 720p and totally chokes on a 1080p video; all on an non-overclocked RPi-1. Note that we have to depend on rpi-userland. rpi-userland is a GLES/EGL provider, so it can't be selected (as all providers of a virtual package can't). Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Cc: Maxime Hadjinlian <maxime.hadjinlian@gmail.com> Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> [Thomas: add a depends on BR2_PACKAGE_FFMPEG_ARCH_SUPPORTS.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
47 lines
1.4 KiB
Makefile
47 lines
1.4 KiB
Makefile
################################################################################
|
|
#
|
|
# omxplayer
|
|
#
|
|
################################################################################
|
|
|
|
OMXPLAYER_VERSION = 6c90c7503ba4658221774759edf7f2ae816711de
|
|
OMXPLAYER_SITE = $(call github,popcornmix,omxplayer,$(OMXPLAYER_VERSION))
|
|
OMXPLAYER_LICENSE = GPLv2+
|
|
OMXPLAYER_LICENSE_FILES = COPYING
|
|
|
|
OMXPLAYER_DEPENDENCIES = \
|
|
host-pkgconf boost dbus ffmpeg freetype libidn libusb pcre \
|
|
rpi-userland zlib
|
|
|
|
OMXPLAYER_EXTRA_CFLAGS = \
|
|
-DTARGET_LINUX -DTARGET_POSIX \
|
|
`$(PKG_CONFIG_HOST_BINARY) --cflags bcm_host` \
|
|
`$(PKG_CONFIG_HOST_BINARY) --cflags freetype2` \
|
|
`$(PKG_CONFIG_HOST_BINARY) --cflags dbus-1`
|
|
|
|
# OMXplayer has support for building in Buildroot, but that
|
|
# procedure is, well, tainted. Fix this by forcing the real,
|
|
# correct values.
|
|
OMXPLAYER_MAKE_ENV = \
|
|
USE_BUILDROOT=1 \
|
|
BUILDROOT=$(TOP_DIR) \
|
|
SDKSTAGE=$(STAGING_DIR) \
|
|
TARGETFS=$(TARGET_DIR) \
|
|
TOOLCHAIN=$(HOST_DIR)/usr \
|
|
HOST=$(GNU_TARGET_NAME) \
|
|
SYSROOT=$(STAGING_DIR) \
|
|
JOBS=$(PARALLEL_JOBS) \
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
STRIP=true \
|
|
CFLAGS="$(TARGET_CFLAGS) $(OMXPLAYER_EXTRA_CFLAGS)"
|
|
|
|
define OMXPLAYER_BUILD_CMDS
|
|
$(OMXPLAYER_MAKE_ENV) $(MAKE) -C $(@D) omxplayer.bin
|
|
endef
|
|
|
|
define OMXPLAYER_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -m 0755 -D $(@D)/omxplayer.bin $(TARGET_DIR)/usr/bin/omxplayer
|
|
endef
|
|
|
|
$(eval $(generic-package))
|