1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-29 05:38:00 +00:00

multimedia/bino: unbreak with ffmpeg 4.0

media_object.cpp:908:60: error: use of undeclared identifier 'CODEC_CAP_DR1'
            if (lowres || (codec && (codec->capabilities & CODEC_CAP_DR1)))
                                                           ^
media_object.cpp:909:37: error: use of undeclared identifier 'CODEC_FLAG_EMU_EDGE'
                codec_ctx->flags |= CODEC_FLAG_EMU_EDGE;
                                    ^

PR:		227726
Reported by:	antoine (via exp-run)
This commit is contained in:
Jan Beich 2018-05-04 11:39:58 +00:00
parent 53d8ac01d8
commit eff5b4acdc
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=469015
2 changed files with 20 additions and 2 deletions

View File

@ -13,8 +13,6 @@ COMMENT= 3D video player with multi-display support
LICENSE= GPLv3+
LICENSE_FILE= ${WRKSRC}/COPYING
BROKEN= fails to build with ffmpeg 4.0
LIB_DEPENDS= libass.so:multimedia/libass \
libavformat.so:multimedia/ffmpeg \
libopenal.so:audio/openal-soft

View File

@ -0,0 +1,20 @@
media_object.cpp:908:60: error: use of undeclared identifier 'CODEC_CAP_DR1'
if (lowres || (codec && (codec->capabilities & CODEC_CAP_DR1)))
^
media_object.cpp:909:37: error: use of undeclared identifier 'CODEC_FLAG_EMU_EDGE'
codec_ctx->flags |= CODEC_FLAG_EMU_EDGE;
^
--- src/media_object.cpp.orig 2016-11-30 19:18:54 UTC
+++ src/media_object.cpp
@@ -905,8 +905,10 @@ void media_object::open(const std::string &url, const
#ifdef FF_API_LOWRES
lowres = codec_ctx->lowres;
#endif
+#ifdef FF_API_EMU_EDGE
if (lowres || (codec && (codec->capabilities & CODEC_CAP_DR1)))
codec_ctx->flags |= CODEC_FLAG_EMU_EDGE;
+#endif
}
// Find and open the codec. AV_CODEC_ID_TEXT is a special case: it has no decoder since it is unencoded raw data.
if (codec_ctx->codec_id != AV_CODEC_ID_TEXT && (!codec || (e = avcodec_open2(codec_ctx, codec, NULL)) < 0))