Skip to content

Commit

Permalink
Merge pull request #9583 from heitbaum/minidlna
Browse files Browse the repository at this point in the history
minidlna: rebuild with ffmpeg-7.1 and addon (2)
  • Loading branch information
knaerzche authored Dec 22, 2024
2 parents 26e43c2 + 996bb4a commit be14964
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/addons/service/minidlna/package.mk
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
PKG_NAME="minidlna"
PKG_VERSION="1.3.3"
PKG_SHA256="39026c6d4a139b9180192d1c37225aa3376fdf4f1a74d7debbdbb693d996afa4"
PKG_REV="1"
PKG_REV="2"
PKG_ARCH="any"
PKG_LICENSE="BSD-3c/GPLv2"
PKG_SITE="https://sourceforge.net/projects/minidlna/"
Expand Down
13 changes: 13 additions & 0 deletions packages/addons/service/minidlna/patches/minidlna-02-ffmpeg7.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
--- a/libav.h 2023-05-31 09:25:59.000000000 +0100
+++ b/libav.h 2024-11-30 21:51:58.063500472 +0000
@@ -174,7 +174,9 @@
#define lav_codec_tag(s) s->codecpar->codec_tag
#define lav_sample_rate(s) s->codecpar->sample_rate
#define lav_bit_rate(s) s->codecpar->bit_rate
-#define lav_channels(s) s->codecpar->channels
+/* #define lav_channels(s) s->codecpar->channels */
+/* ffmpeg 7 */
+#define lav_channels(s) s->codecpar->ch_layout.nb_channels
#define lav_width(s) s->codecpar->width
#define lav_height(s) s->codecpar->height
#define lav_profile(s) s->codecpar->profile

0 comments on commit be14964

Please sign in to comment.