From owner-freebsd-multimedia@freebsd.org Mon Dec 12 08:08:49 2016 Return-Path: Delivered-To: freebsd-multimedia@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 1CE48C738C8 for ; Mon, 12 Dec 2016 08:08:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 06043174E for ; Mon, 12 Dec 2016 08:08:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 05778C738C7; Mon, 12 Dec 2016 08:08:49 +0000 (UTC) Delivered-To: multimedia@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 051E5C738C4 for ; Mon, 12 Dec 2016 08:08:49 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 DFE04174C for ; Mon, 12 Dec 2016 08:08:48 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id uBC88lBe080647 for ; Mon, 12 Dec 2016 08:08:48 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: multimedia@FreeBSD.org Subject: [Bug 207547] [exp-run] Update ffmpeg to 3.2 Date: Mon, 12 Dec 2016 08:08:48 +0000 X-Bugzilla-Reason: AssignedTo CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Many People X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: Closed X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: multimedia@FreeBSD.org X-Bugzilla-Flags: exp-run? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Dec 2016 08:08:49 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D207547 --- Comment #56 from commit-hook@freebsd.org --- A commit references this bug: Author: jbeich Date: Mon Dec 12 08:08:41 UTC 2016 New revision: 428398 URL: https://svnweb.freebsd.org/changeset/ports/428398 Log: graphics/gegl: unbreak FFMPEG=3Don runtime $ gimp /path/to/file.png GEGL-geglmodule.c-Message: Module '/usr/local/lib/gegl-0.2/ff-load.so' load error: /usr/local/lib/gegl-0.2/ff-load.so: Undefined symbol "av_read_packet" $ echo CFLAGS+=3D-Werror=3Dimplicit-function-declaration >>Makefile.local $ make [...] ./ff-load.c:140:9: error: implicit declaration of function 'av_close_input_file' is invalid in C99 [-Werror,-Wimplicit-function-declaration] av_close_input_file (p->ic); ^ ./ff-load.c:219:23: error: implicit declaration of function 'av_read_pack= et' is invalid in C99 [-Werror,-Wimplicit-function-declaration] if (av_read_packet (p->ic, &p->pkt) < 0) ^ ./ff-load.c:274:13: error: implicit declaration of function 'av_open_input_file' is invalid in C99 [-Werror,-Wimplicit-function-declaration] err =3D av_open_input_file (&p->ic, o->path, NULL, 0, NULL); ^ ./ff-load.c:279:13: error: implicit declaration of function 'av_find_stream_info' is invalid in C99 [-Werror,-Wimplicit-function-declaration] err =3D av_find_stream_info (p->ic); ^ ./ff-load.c:279:13: note: did you mean 'avformat_find_stream_info'? /usr/local/include/libavformat/avformat.h:2217:5: note: 'avformat_find_stream_info' declared here int avformat_find_stream_info(AVFormatContext *ic, AVDictionary **options= ); ^ ./ff-load.c:315:11: error: implicit declaration of function 'avcodec_open= ' is invalid in C99 [-Werror,-Wimplicit-function-declaration] if (avcodec_open (p->enc, p->codec) < 0) ^ ./ff-load.c:315:11: note: did you mean 'avcodec_open2'? /usr/local/include/libavcodec/avcodec.h:4324:5: note: 'avcodec_open2' declared here int avcodec_open2(AVCodecContext *avctx, const AVCodec *codec, AVDictiona= ry **options); ^ ./ff-load.c:324:23: error: implicit declaration of function 'avcodec_alloc_frame' is invalid in C99 [-Werror,-Wimplicit-function-declaration] p->lavc_frame =3D avcodec_alloc_frame (); ^ PR: 207547 Approved by: portmgr blanket Changes: head/graphics/gegl/Makefile head/graphics/gegl/files/patch-operations_external_ff-load.c --=20 You are receiving this mail because: You are the assignee for the bug. You are on the CC list for the bug.=