commit:     9fe5bba535c6724ba3494323e76a0fe9175ff55e
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 22 11:26:20 2018 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Sun Apr 22 11:26:20 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fe5bba5

media-sound/moc: fix build with ffmpeg4

Package-Manager: Portage-2.3.31, Repoman-2.3.9

 media-sound/moc/files/ffmpeg4.patch   | 33 +++++++++++++++++++++++++++++++++
 media-sound/moc/moc-2.6_alpha3.ebuild |  3 ++-
 2 files changed, 35 insertions(+), 1 deletion(-)

diff --git a/media-sound/moc/files/ffmpeg4.patch 
b/media-sound/moc/files/ffmpeg4.patch
new file mode 100644
index 00000000000..28b68882347
--- /dev/null
+++ b/media-sound/moc/files/ffmpeg4.patch
@@ -0,0 +1,33 @@
+Index: moc-2.6-alpha3/decoder_plugins/ffmpeg/ffmpeg.c
+===================================================================
+--- moc-2.6-alpha3.orig/decoder_plugins/ffmpeg/ffmpeg.c
++++ moc-2.6-alpha3/decoder_plugins/ffmpeg/ffmpeg.c
+@@ -697,7 +697,7 @@ static void *ffmpeg_open_internal (struc
+        * FFmpeg/LibAV in use.  For some versions this will be caught in
+        * *_find_stream_info() above and misreported as an unfound codec
+        * parameters error. */
+-      if (data->codec->capabilities & CODEC_CAP_EXPERIMENTAL) {
++      if (data->codec->capabilities & AV_CODEC_CAP_EXPERIMENTAL) {
+               decoder_error (&data->error, ERROR_FATAL, 0,
+                               "The codec is experimental and may damage MOC: 
%s",
+                               data->codec->name);
+@@ -705,8 +705,8 @@ static void *ffmpeg_open_internal (struc
+       }
+ 
+       set_downmixing (data);
+-      if (data->codec->capabilities & CODEC_CAP_TRUNCATED)
+-              data->enc->flags |= CODEC_FLAG_TRUNCATED;
++      if (data->codec->capabilities & AV_CODEC_CAP_TRUNCATED)
++              data->enc->flags |= AV_CODEC_FLAG_TRUNCATED;
+ 
+       if (avcodec_open2 (data->enc, data->codec, NULL) < 0)
+       {
+@@ -725,7 +725,7 @@ static void *ffmpeg_open_internal (struc
+ 
+       data->sample_width = sfmt_Bps (data->fmt);
+ 
+-      if (data->codec->capabilities & CODEC_CAP_DELAY)
++      if (data->codec->capabilities & AV_CODEC_CAP_DELAY)
+               data->delay = true;
+       data->seek_broken = is_seek_broken (data);
+       data->timing_broken = is_timing_broken (data->ic);

diff --git a/media-sound/moc/moc-2.6_alpha3.ebuild 
b/media-sound/moc/moc-2.6_alpha3.ebuild
index d68ba88aa23..b2d3b3643bd 100644
--- a/media-sound/moc/moc-2.6_alpha3.ebuild
+++ b/media-sound/moc/moc-2.6_alpha3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -57,6 +57,7 @@ DEPEND="${RDEPEND}
 "
 
 S=${WORKDIR}/${MY_P}
+PATCHES=( "${FILESDIR}/ffmpeg4.patch" )
 
 src_configure() {
        local myconf=(

Reply via email to