avplay demo

This commit is contained in:
Emery Hemingway 2019-04-25 13:02:33 +02:00
parent fbb1398272
commit 33fe24bbc5
3 changed files with 48 additions and 0 deletions

View File

@ -13,6 +13,8 @@ CONFIG_UPSTREAM_VERSION=19.02
CONFIG_PUBLIC_USER=ehmry
CONFIG_PUBLIC_KEY=6E10414EE7160781F5FEE8FFB14D043A26B3D2C7
CONFIG_PUBLIC_PKG_AVPLAY=ehmry/pkg/avplay/2019-04-24
CONFIG_PUBLIC_PKG_PDF_VIEW=nfeske/pkg/pdf_view/2019-03-21
CONFIG_PUBLIC_SRC_BASE_NOVA=genodelabs/src/base-nova/2019-03-17
CONFIG_PUBLIC_SRC_BLOCK_SHRED=ehmry/src/block_shred/2019-03-31
CONFIG_PUBLIC_SRC_CHROOT=genodelabs/src/chroot/2019-03-17

9
runtimes/avplay/Tupfile Normal file
View File

@ -0,0 +1,9 @@
TARGET_NAME = akira
PKG_DEPENDS += \
@(PUBLIC_PKG_AVPLAY) \
include_rules
: runtime |> !collect_pkg_runtime |>
include $(PKG_RULES)

37
runtimes/avplay/runtime Normal file
View File

@ -0,0 +1,37 @@
<runtime ram="96M" caps="256" binary="avplay">
<requires>
<audio_out/>
<file_system/>
<nitpicker/>
</requires>
<content>
<rom label="avcodec.lib.so"/>
<rom label="avfilter.lib.so"/>
<rom label="avformat.lib.so"/>
<rom label="avplay"/>
<rom label="avresample.lib.so"/>
<rom label="avutil.lib.so"/>
<rom label="libc.lib.so"/>
<rom label="libm.lib.so"/>
<rom label="sdl.lib.so"/>
<rom label="swscale.lib.so"/>
<rom label="vfs.lib.so"/>
<rom label="zlib.lib.so"/>
</content>
<config>
<arg value="avplay"/>
<arg value="blobs/?"/>
<sdl_audio_volume value="100"/>
<libc rtc="/dev/rtc" stdout="/dev/log" stderr="/dev/log"/>
<vfs>
<dir name="dev">
<log/> <inline name="rtc">2000-01-01 00:00</inline>
</dir>
<dir name="blobs"> <fs root="4da3599f5c5917fa319e0c356cbb07c6075aba5ec7b116824bf53a14acdb317d"/> </dir>
</vfs>
</config>
</runtime>