From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 1C3F51389E2 for ; Mon, 22 Dec 2014 18:31:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 28440E0866; Mon, 22 Dec 2014 18:31:55 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A2DF7E0866 for ; Mon, 22 Dec 2014 18:31:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D9CA533FEDE for ; Mon, 22 Dec 2014 18:31:53 +0000 (UTC) Received: by oystercatcher.gentoo.org (Postfix, from userid 2238) id 8F70CD23B; Mon, 22 Dec 2014 18:31:52 +0000 (UTC) From: "Markos Chandras (hwoarang)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, hwoarang@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in net-voip/homer/files: homer-0.25-ffmpeg-avstream.patch X-VCS-Repository: gentoo-x86 X-VCS-Files: homer-0.25-ffmpeg-avstream.patch X-VCS-Directories: net-voip/homer/files X-VCS-Committer: hwoarang X-VCS-Committer-Name: Markos Chandras Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20141222183152.8F70CD23B@oystercatcher.gentoo.org> Date: Mon, 22 Dec 2014 18:31:52 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: e8fb7471-a5be-4118-ad68-471f947ef867 X-Archives-Hash: 785e8c8936e9da464eac45baa526a4a2 hwoarang 14/12/22 18:31:52 Added: homer-0.25-ffmpeg-avstream.patch Log: Fix building against latest ffmpeg. Bug #516290. Thanks to Marcel Pennewiß (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 09BF4F54C2BA7F3C!) Revision Changes Path 1.1 net-voip/homer/files/homer-0.25-ffmpeg-avstream.patch file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/homer/files/homer-0.25-ffmpeg-avstream.patch?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-voip/homer/files/homer-0.25-ffmpeg-avstream.patch?rev=1.1&content-type=text/plain Index: homer-0.25-ffmpeg-avstream.patch =================================================================== >From 31136f8df53d4d528acb3b301271d4b19274dfc6 Mon Sep 17 00:00:00 2001 From: ThomasVolkert Date: Sat, 7 Jun 2014 13:31:51 +0200 Subject: [PATCH] - fixed: ffmpeg compatibility --- HomerMultimedia/src/RTP.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/HomerMultimedia/src/RTP.cpp b/HomerMultimedia/src/RTP.cpp index ad4d04b..97b631b 100644 --- a/HomerMultimedia/src/RTP.cpp +++ b/HomerMultimedia/src/RTP.cpp @@ -611,7 +611,9 @@ bool RTP::OpenRtpEncoder(string pTargetHost, unsigned int pTargetPort, AVStream mRtpEncoderStream->priv_data = NULL; // create monotone timestamps mRtpEncoderStream->cur_dts = 0; - mRtpEncoderStream->reference_dts = 0; + #ifndef FF_API_REFERENCE_DTS + mRtpEncoderStream->reference_dts = 0; + #endif // set target coordinates for rtp stream snprintf(mRtpFormatContext->filename, sizeof(mRtpFormatContext->filename), "rtp://%s:%u", pTargetHost.c_str(), pTargetPort);