Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 2 May 2018 13:26:12 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r468832 - in head/net/opal: . files
Message-ID:  <201805021326.w42DQCCE046925@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Wed May  2 13:26:12 2018
New Revision: 468832
URL: https://svnweb.freebsd.org/changeset/ports/468832

Log:
  net/opal: correct codec option names after r468745

Modified:
  head/net/opal/Makefile   (contents, props changed)
  head/net/opal/files/patch-ffmpeg4   (contents, props changed)

Modified: head/net/opal/Makefile
==============================================================================
--- head/net/opal/Makefile	Wed May  2 13:25:55 2018	(r468831)
+++ head/net/opal/Makefile	Wed May  2 13:26:12 2018	(r468832)
@@ -3,7 +3,7 @@
 
 PORTNAME=	opal
 PORTVERSION=	3.10.10
-PORTREVISION=	15
+PORTREVISION=	16
 CATEGORIES=	net
 MASTER_SITES=	GNOME
 

Modified: head/net/opal/files/patch-ffmpeg4
==============================================================================
--- head/net/opal/files/patch-ffmpeg4	Wed May  2 13:25:55 2018	(r468831)
+++ head/net/opal/files/patch-ffmpeg4	Wed May  2 13:26:12 2018	(r468832)
@@ -195,7 +195,7 @@ mpeg4.cxx:1329:27: error: use of undeclared identifier
      m_avcontext->rc_min_rate = 0;
      // This is set to 0 in ffmpeg.c, the command-line utility.
 -    m_avcontext->rc_initial_cplx = 0.0f;
-+    av_opt_set_double(m_avcontext, "rc_initial_cplx", 0.0f, 0);
++    av_opt_set_double(m_avcontext, "rc_init_cplx", 0.0f, 0);
  
      // And this is set to 1.
      // It seems to affect how aggressively the library will raise and lower
@@ -203,7 +203,7 @@ mpeg4.cxx:1329:27: error: use of undeclared identifier
      // the "vbv buffer", not bits per second, so nobody really knows how
      // it works.
 -    m_avcontext->rc_buffer_aggressivity = 1.0f;
-+    av_opt_set_double(m_avcontext, "rc_buffer_aggressivity", 1.0f, 0);
++    av_opt_set_double(m_avcontext, "rc_buf_aggressivity", 1.0f, 0);
  
      // Ratecontrol buffer size, in bits. Usually 0.5-1 second worth.
      // 224 kbyte is what VLC uses, and it seems to fix the quantization pulse (at Level 5)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201805021326.w42DQCCE046925>