diff options
author | Piotr Karbowski <slashbeast@gentoo.org> | 2020-09-29 22:59:57 +0200 |
---|---|---|
committer | Piotr Karbowski <slashbeast@gentoo.org> | 2020-09-29 23:06:02 +0200 |
commit | fd8ef4388c48ac2305be8dc35fe4d665cceeb541 (patch) | |
tree | 0551c214d26ba15675b4396391a37bc059f5b649 /media-sound/deadbeef/files | |
parent | media-video/subtitlecomposer: Fix .desktop file again (diff) | |
download | gentoo-fd8ef4388c48ac2305be8dc35fe4d665cceeb541.tar.gz gentoo-fd8ef4388c48ac2305be8dc35fe4d665cceeb541.tar.bz2 gentoo-fd8ef4388c48ac2305be8dc35fe4d665cceeb541.zip |
media-sound/deadbeef: new package (1.8.4)
Deadbeef has not been added into the tree for a long time due to
licensing concerns. The package will build all the plugins dynamically
and link dynamically to any system library it depends on. All the
plugins with questionable licenses and most of the vendorized code has
been also removed.
This also means that lots of the plugins is missing, but none of them
can be considered core functionality and for the files that lack proper
plugin, there's a fair chance that ffmpeg plugin will work with them.
The player support both gtk2 and gtk3, however there's little point in
interfacing gtk2 now, so the gtk3 is used instead and cannot be opt-out
from. For the same reason mp3 plugin uses mpg123 instead of libmad that
is now considered dead upstream.
Signed-off-by: Piotr Karbowski <slashbeast@gentoo.org>
Diffstat (limited to 'media-sound/deadbeef/files')
-rw-r--r-- | media-sound/deadbeef/files/deadbeef-use-ffmpeg-plugin-for-ape-by-default.patch | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/media-sound/deadbeef/files/deadbeef-use-ffmpeg-plugin-for-ape-by-default.patch b/media-sound/deadbeef/files/deadbeef-use-ffmpeg-plugin-for-ape-by-default.patch new file mode 100644 index 000000000000..82a979a5c179 --- /dev/null +++ b/media-sound/deadbeef/files/deadbeef-use-ffmpeg-plugin-for-ape-by-default.patch @@ -0,0 +1,13 @@ +diff --git a/plugins/ffmpeg/ffmpeg.c b/plugins/ffmpeg/ffmpeg.c +index da137069a..43cdcb301 100644 +--- a/plugins/ffmpeg/ffmpeg.c ++++ b/plugins/ffmpeg/ffmpeg.c +@@ -75,7 +75,7 @@ + static DB_decoder_t plugin; + static DB_functions_t *deadbeef; + +-#define DEFAULT_EXTS "aa3;oma;ac3;vqf;amr;tak;dsf;dff;wma;3gp;mp4;m4a" ++#define DEFAULT_EXTS "aa3;oma;ac3;vqf;amr;tak;dsf;dff;wma;3gp;mp4;m4a;ape" + #define UNPOPULATED_EXTS_BY_FFMPEG \ + "aif,aiff,afc,aifc,amr,asf," \ + "wmv,wma,au,caf,webm," \ |