From owner-svn-ports-all@freebsd.org Wed Aug 1 07:55:20 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A6D57105CD41; Wed, 1 Aug 2018 07:55:20 +0000 (UTC) (envelope-from bar@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 51BA9870D1; Wed, 1 Aug 2018 07:55:20 +0000 (UTC) (envelope-from bar@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2D5341FADF; Wed, 1 Aug 2018 07:55:20 +0000 (UTC) (envelope-from bar@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w717tKkb087612; Wed, 1 Aug 2018 07:55:20 GMT (envelope-from bar@FreeBSD.org) Received: (from bar@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w717tJg9087611; Wed, 1 Aug 2018 07:55:19 GMT (envelope-from bar@FreeBSD.org) Message-Id: <201808010755.w717tJg9087611@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bar set sender to bar@FreeBSD.org using -f From: Barbara Guida Date: Wed, 1 Aug 2018 07:55:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r476163 - in head/multimedia: avidemux-plugins avidemux/files X-SVN-Group: ports-head X-SVN-Commit-Author: bar X-SVN-Commit-Paths: in head/multimedia: avidemux-plugins avidemux/files X-SVN-Commit-Revision: 476163 X-SVN-Commit-Repository: ports 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.27 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: Wed, 01 Aug 2018 07:55:20 -0000 Author: bar Date: Wed Aug 1 07:55:19 2018 New Revision: 476163 URL: https://svnweb.freebsd.org/changeset/ports/476163 Log: Re-create patch for avidemux-plugins after r464084 as in upstream. PR: 230211 Modified: head/multimedia/avidemux-plugins/Makefile head/multimedia/avidemux/files/patch-avidemux__plugins_ADM__muxers_muxerMp4v2_libmp4v2_src_rtphint.cpp Modified: head/multimedia/avidemux-plugins/Makefile ============================================================================== --- head/multimedia/avidemux-plugins/Makefile Wed Aug 1 07:50:29 2018 (r476162) +++ head/multimedia/avidemux-plugins/Makefile Wed Aug 1 07:55:19 2018 (r476163) @@ -3,7 +3,7 @@ PORTNAME= avidemux PORTVERSION= ${AVIDEMUX_VERSION} -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= multimedia PKGNAMESUFFIX= -plugins Modified: head/multimedia/avidemux/files/patch-avidemux__plugins_ADM__muxers_muxerMp4v2_libmp4v2_src_rtphint.cpp ============================================================================== --- head/multimedia/avidemux/files/patch-avidemux__plugins_ADM__muxers_muxerMp4v2_libmp4v2_src_rtphint.cpp Wed Aug 1 07:50:29 2018 (r476162) +++ head/multimedia/avidemux/files/patch-avidemux__plugins_ADM__muxers_muxerMp4v2_libmp4v2_src_rtphint.cpp Wed Aug 1 07:55:19 2018 (r476163) @@ -1,11 +1,11 @@ --- avidemux_plugins/ADM_muxers/muxerMp4v2/libmp4v2/src/rtphint.cpp.orig 2016-01-29 09:47:25.000000000 +0100 -+++ avidemux_plugins/ADM_muxers/muxerMp4v2/libmp4v2/src/rtphint.cpp 2018-07-30 08:44:59.947567000 +0200 ++++ avidemux_plugins/ADM_muxers/muxerMp4v2/libmp4v2/src/rtphint.cpp 2018-08-01 09:39:54.771441000 +0200 @@ -339,7 +339,7 @@ pSlash = strchr(pSlash, '/'); if (pSlash != NULL) { pSlash++; - if (pSlash != '\0') { -+ if (*pSlash != '\0') { ++ if (*pSlash) { length = (uint32_t)strlen(pRtpMap) - (pSlash - pRtpMap); *ppEncodingParams = (char *)MP4Calloc(length + 1); strncpy(*ppEncodingParams, pSlash, length);