Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 28 Oct 2018 00:52:31 +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: r483209 - head/multimedia/omxplayer
Message-ID:  <201810280052.w9S0qVL7065482@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Sun Oct 28 00:52:30 2018
New Revision: 483209
URL: https://svnweb.freebsd.org/changeset/ports/483209

Log:
  multimedia/omxplayer: unbreak with ffmpeg 4
  
  In file included from BitstreamConverter.cpp:26:
  In file included from ./BitstreamConverter.h:27:
  ./DllAvFormat.h:117:49: error: no member named 'url_feof' in the global namespace; did you mean simply 'url_feof'?
    virtual int url_feof(AVIOContext *s) { return ::url_feof(s); }
                                                  ^~~~~~~~~~
                                                  url_feof
  ./DllAvFormat.h:117:15: note: 'url_feof' declared here
    virtual int url_feof(AVIOContext *s) { return ::url_feof(s); }
                ^
  OMXReader.cpp:1028:42: error: use of undeclared identifier 'FF_INPUT_BUFFER_PADDING_SIZE'
      pkt->data = (uint8_t*) malloc(size + FF_INPUT_BUFFER_PADDING_SIZE);
                                           ^
  OMXReader.cpp:1036:35: error: use of undeclared identifier 'FF_INPUT_BUFFER_PADDING_SIZE'
        memset(pkt->data + size, 0, FF_INPUT_BUFFER_PADDING_SIZE);
                                    ^
  
  PR:		227726
  Obtained from:	upstream

Modified:
  head/multimedia/omxplayer/Makefile   (contents, props changed)
  head/multimedia/omxplayer/distinfo   (contents, props changed)

Modified: head/multimedia/omxplayer/Makefile
==============================================================================
--- head/multimedia/omxplayer/Makefile	Sun Oct 28 00:52:17 2018	(r483208)
+++ head/multimedia/omxplayer/Makefile	Sun Oct 28 00:52:30 2018	(r483209)
@@ -6,6 +6,9 @@ PORTVERSION=	20161004
 PORTREVISION=	9
 CATEGORIES=	multimedia
 
+PATCH_SITES=	https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/
+PATCHFILES=	96800576209b.patch:-p1
+
 MAINTAINER=	mikael.urankar@gmail.com
 COMMENT=	Raspberry Pi video player
 

Modified: head/multimedia/omxplayer/distinfo
==============================================================================
--- head/multimedia/omxplayer/distinfo	Sun Oct 28 00:52:17 2018	(r483208)
+++ head/multimedia/omxplayer/distinfo	Sun Oct 28 00:52:30 2018	(r483209)
@@ -1,3 +1,5 @@
 TIMESTAMP = 1483038468
 SHA256 (popcornmix-omxplayer-20161004-12b472e_GH0.tar.gz) = 8aabcc8a1665686dfb72e74b30b6f755a72b5e5577e235dad6c1c6d28dc79637
 SIZE (popcornmix-omxplayer-20161004-12b472e_GH0.tar.gz) = 1218679
+SHA256 (96800576209b.patch) = d1bdcf27c4f4ab9b9d85ee26d126b3eb62af827498860d3e9c430f111708bb8e
+SIZE (96800576209b.patch) = 3484



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