Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 04 May 2018 21:02:17 +0000
From:      bugzilla-noreply@freebsd.org
To:        multimedia@FreeBSD.org
Subject:   [Bug 227726] multimedia/ffmpeg: update to 4.0
Message-ID:  <bug-227726-12827-LuoqfcV8DI@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-227726-12827@https.bugs.freebsd.org/bugzilla/>
References:  <bug-227726-12827@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D227726

--- Comment #73 from Jan Beich <jbeich@FreeBSD.org> ---
Here's the remaining fallout:
- games/retroarch has an upstream fix and pending update
- graphics/openfx-io landed after exp-run
- net/freerdp1 upstream fix doesn't apply
- net/guacamole-server -Werror usage

Most bustage comes down to:
- libavfilter/avfiltergraph.h -> drop or replace with libavfilter/avfilter.h
- FF_INPUT_BUFFER_PADDING_SIZE -> AV_INPUT_BUFFER_PADDING_SIZE
- FF_MIN_BUFFER_SIZE -> AV_INPUT_BUFFER_MIN_SIZE
- FF_MAX_B_FRAMES -> INT_MAX
- CODEC_(CAP|FLAG)_* -> AV_CODEC_(CAP|FLAG)_*
- CODEC_FLAG_EMU_EDGE and AVFMT_RAWPICTURE can be removed or ifdef'd out
- avctx->foo -> av_opt_set(avctx->priv_data, "foo", ...) but check "foo"
spelling and type
- avctx->codec_name -> avcodec_get_name(avctx->codec_id)
- avstream->pts -> av_stream_get_end_pts(avstream)

multimedia/gstreamer1-libav simply had a very large number of errors.

--=20
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-227726-12827-LuoqfcV8DI>