From owner-svn-ports-all@freebsd.org Sun Dec 11 15:23:09 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A6192C72769; Sun, 11 Dec 2016 15:23:09 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5BC42142; Sun, 11 Dec 2016 15:23:09 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uBBFN8Jd098530; Sun, 11 Dec 2016 15:23:08 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uBBFN8Lq098529; Sun, 11 Dec 2016 15:23:08 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201612111523.uBBFN8Lq098529@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sun, 11 Dec 2016 15:23:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r428353 - head/multimedia/mlt X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Dec 2016 15:23:09 -0000 Author: jbeich Date: Sun Dec 11 15:23:08 2016 New Revision: 428353 URL: https://svnweb.freebsd.org/changeset/ports/428353 Log: multimedia/mlt: disable VDPAU to unbreak with ffmpeg 3.x In file included from producer_avformat.c:153: ./vdpau.c:162:11: error: no member named 'type' in 'struct AVFrame' frame->type = FF_BUFFER_TYPE_USER; ~~~~~ ^ ./vdpau.c:162:18: error: use of undeclared identifier 'FF_BUFFER_TYPE_USER' frame->type = FF_BUFFER_TYPE_USER; ^ ./vdpau.c:165:16: error: no member named 'reference' in 'struct AVFrame' if ( frame->reference ) ~~~~~ ^ ./vdpau.c:239:21: error: no member named 'get_buffer' in 'struct AVCodecContext'; did you mean 'get_buffer2'? self->video_codec->get_buffer = vdpau_get_buffer; ^~~~~~~~~~ get_buffer2 /usr/local/include/libavcodec/avcodec.h:2565:11: note: 'get_buffer2' declared here int (*get_buffer2)(struct AVCodecContext *s, AVFrame *frame, int flags); ^ ./vdpau.c:240:21: error: no member named 'release_buffer' in 'struct AVCodecContext' self->video_codec->release_buffer = vdpau_release_buffer; ~~~~~~~~~~~~~~~~~ ^ PR: 214197 Reported by: antoine (via exp-run) Suggested by: matthew@reztek.cz Approved by: portmgr blanket Modified: head/multimedia/mlt/Makefile (contents, props changed) Modified: head/multimedia/mlt/Makefile ============================================================================== --- head/multimedia/mlt/Makefile Sun Dec 11 15:22:47 2016 (r428352) +++ head/multimedia/mlt/Makefile Sun Dec 11 15:23:08 2016 (r428353) @@ -2,7 +2,7 @@ PORTNAME= mlt PORTVERSION= 6.2.0 -PORTREVISION?= 2 +PORTREVISION?= 3 CATEGORIES?= multimedia MASTER_SITES= SF/${PORTNAME}/${PORTNAME} @@ -43,7 +43,7 @@ OPTIONS_DEFINE= DOCS EXAMPLES FFMPEG FRE SAMPLERATE SOX SWFDEC VDPAU VIDSTAB OPTIONS_RADIO= QT OPTIONS_RADIO_QT= QT4 QT5 -OPTIONS_DEFAULT=FFMPEG FREI0R GTK2 QT4 SAMPLERATE SOX SWFDEC VDPAU VIDSTAB +OPTIONS_DEFAULT=FFMPEG FREI0R GTK2 QT4 SAMPLERATE SOX SWFDEC VIDSTAB OPTIONS_SUB= yes GTK2_DESC= Images and text rendering via GTK+ 2 @@ -90,6 +90,8 @@ SWFDEC_USE= GNOME=glib20,cairo VDPAU_CONFIGURE_ON= --avformat-vdpau VDPAU_CONFIGURE_OFF= --avformat-no-vdpau +# vdpau.c:239:21: error: no member named 'get_buffer' in 'struct AVCodecContext' +VDPAU_BROKEN= https://sourceforge.net/p/mlt/bugs/240/ VIDSTAB_LIB_DEPENDS= libvidstab.so:multimedia/vid.stab VIDSTAB_CONFIGURE_ENABLE=vid.stab