mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-16 03:24:07 +00:00
- Update to 3.8.2
- Remove unneeded patch
This commit is contained in:
parent
5c5dedf772
commit
e35224a057
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=432863
@ -2,9 +2,8 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= audacious-plugins
|
||||
PORTVERSION= 3.8.1
|
||||
PORTVERSION= 3.8.2
|
||||
DISTVERSIONSUFFIX= -gtk3
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= multimedia audio
|
||||
MASTER_SITES= http://distfiles.audacious-media-player.org/
|
||||
PKGNAMESUFFIX= ${DISTVERSIONSUFFIX}
|
||||
|
@ -1,3 +1,3 @@
|
||||
TIMESTAMP = 1481379302
|
||||
SHA256 (audacious-plugins-3.8.1-gtk3.tar.bz2) = ce31f00599231b660730b4e111bd3daf5f710b1cd9f5c1acef1a2e05bef22bf9
|
||||
SIZE (audacious-plugins-3.8.1-gtk3.tar.bz2) = 1822433
|
||||
TIMESTAMP = 1485799759
|
||||
SHA256 (audacious-plugins-3.8.2-gtk3.tar.bz2) = 7849024beae61b8af3874b166cf3977905aec77859e53901158b531b31ef0cef
|
||||
SIZE (audacious-plugins-3.8.2-gtk3.tar.bz2) = 1821924
|
||||
|
@ -2,8 +2,7 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= audacious-plugins
|
||||
PORTVERSION= 3.8.1
|
||||
PORTREVISION= 2
|
||||
PORTVERSION= 3.8.2
|
||||
CATEGORIES= multimedia audio
|
||||
MASTER_SITES= http://distfiles.audacious-media-player.org/
|
||||
|
||||
|
@ -1,3 +1,3 @@
|
||||
TIMESTAMP = 1481376431
|
||||
SHA256 (audacious-plugins-3.8.1.tar.bz2) = 109c0559c072703dd8d9fc0bb1c5121126bd1e0edcc2804e1ea85974d98e2638
|
||||
SIZE (audacious-plugins-3.8.1.tar.bz2) = 1821420
|
||||
TIMESTAMP = 1485798334
|
||||
SHA256 (audacious-plugins-3.8.2.tar.bz2) = d7cefca7a0e32bf4e58bb6e84df157268b5e9a6771a0e8c2da98b03f92a5fdd4
|
||||
SIZE (audacious-plugins-3.8.2.tar.bz2) = 1821558
|
||||
|
@ -1,24 +0,0 @@
|
||||
--- src/ffaudio/ffaudio-core.cc.orig 2016-12-06 14:15:33 UTC
|
||||
+++ src/ffaudio/ffaudio-core.cc
|
||||
@@ -99,7 +99,8 @@ struct ScopedContext
|
||||
|
||||
struct ScopedPacket : public AVPacket
|
||||
{
|
||||
- ScopedPacket () { av_init_packet (this); }
|
||||
+ ScopedPacket () : AVPacket ()
|
||||
+ { av_init_packet (this); }
|
||||
|
||||
#if CHECK_LIBAVCODEC_VERSION (55, 25, 100, 55, 16, 0)
|
||||
~ScopedPacket () { av_packet_unref (this); }
|
||||
@@ -553,8 +554,10 @@ bool FFaudio::play (const char * filenam
|
||||
/* On EOF, send an empty packet to "flush" the decoder */
|
||||
/* Otherwise, make a mutable (shallow) copy of the real packet */
|
||||
AVPacket tmp;
|
||||
- if (eof)
|
||||
+ if (eof) {
|
||||
+ tmp = AVPacket ();
|
||||
av_init_packet (& tmp);
|
||||
+ }
|
||||
else
|
||||
tmp = pkt;
|
||||
|
Loading…
Reference in New Issue
Block a user