- Update to 0.8.8
Approved by: marcus (blanket)
This commit is contained in:
parent
0be23322ca
commit
c19262c529
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=130587
12 changed files with 22 additions and 116 deletions
|
@ -6,8 +6,8 @@
|
|||
#
|
||||
|
||||
PORTNAME= gstreamer
|
||||
PORTVERSION= 0.8.7
|
||||
PORTREVISION?= 1
|
||||
PORTVERSION= 0.8.8
|
||||
PORTREVISION?= 0
|
||||
CATEGORIES?= multimedia audio
|
||||
MASTER_SITES= ${MASTER_SITE_GNOME} \
|
||||
http://gstreamer.freedesktop.org/src/gst-plugins/
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
MD5 (gnome2/gst-plugins-0.8.7.tar.bz2) = 24030f8664b0e6f39bc31616f4953af5
|
||||
SIZE (gnome2/gst-plugins-0.8.7.tar.bz2) = 2134878
|
||||
MD5 (gnome2/gst-plugins-0.8.8.tar.bz2) = 4f6e7e730fa674ecd6ec713f937b8acb
|
||||
SIZE (gnome2/gst-plugins-0.8.8.tar.bz2) = 2214274
|
||||
|
|
|
@ -1,22 +0,0 @@
|
|||
--- ext/dirac/gstdiracdec.cc.orig Mon Feb 28 22:04:33 2005
|
||||
+++ ext/dirac/gstdiracdec.cc Mon Feb 28 22:12:15 2005
|
||||
@@ -253,13 +253,18 @@
|
||||
|
||||
case STATE_SEQUENCE:{
|
||||
guint8 *buf[3];
|
||||
+ gint fps_num, fps_denom;
|
||||
+
|
||||
+ fps_num = diracdec->decoder->seq_params.frame_rate.numerator;
|
||||
+ fps_denom = diracdec->decoder->seq_params.frame_rate.denominator;
|
||||
|
||||
/* start-of-sequence - allocate buffer */
|
||||
if (!gst_diracdec_link (diracdec,
|
||||
diracdec->decoder->seq_params.width,
|
||||
diracdec->decoder->seq_params.height,
|
||||
+ (gdouble) fps_num / (gdouble) fps_denom,
|
||||
gst_diracdec_chroma_to_fourcc (diracdec->decoder->seq_params.
|
||||
- chroma), diracdec->decoder->seq_params.frame_rate)) {
|
||||
+ chroma))) {
|
||||
GST_ELEMENT_ERROR (diracdec, CORE, NEGOTIATION, (NULL),
|
||||
("Failed to set caps to %dx%d @ %d fps (format=" GST_FOURCC_FORMAT
|
||||
"/%d)", diracdec->decoder->seq_params.width,
|
|
@ -1,11 +0,0 @@
|
|||
--- gst/tcp/gsttcpclientsrc.h.orig Wed Jun 23 23:44:07 2004
|
||||
+++ gst/tcp/gsttcpclientsrc.h Wed Jun 23 23:44:26 2004
|
||||
@@ -29,6 +29,8 @@
|
||||
#endif /* __cplusplus */
|
||||
|
||||
#include <netdb.h> /* sockaddr_in */
|
||||
+#include <sys/types.h>
|
||||
+#include <sys/socket.h>
|
||||
#include <netinet/in.h> /* sockaddr_in */
|
||||
#include <unistd.h>
|
||||
#include "gsttcp.h"
|
|
@ -1,21 +0,0 @@
|
|||
--- gst/tta/gstttaparse.c.orig Sat Jan 8 13:36:26 2005
|
||||
+++ gst/tta/gstttaparse.c Sat Jan 8 13:37:08 2005
|
||||
@@ -162,11 +162,14 @@
|
||||
case GST_EVENT_SEEK:
|
||||
{
|
||||
if (GST_EVENT_SEEK_FORMAT (event) == GST_FORMAT_TIME) {
|
||||
- GST_DEBUG_OBJECT (ttaparse, "got seek event");
|
||||
GstEvent *seek_event;
|
||||
- guint64 time = GST_EVENT_SEEK_OFFSET (event);
|
||||
- guint64 seek_frame = time / (FRAME_TIME * 1000000000);
|
||||
- guint64 seekpos = ttaparse->index[seek_frame].pos;
|
||||
+ guint64 time;
|
||||
+ guint64 seek_frame;
|
||||
+ guint64 seekpos;
|
||||
+ GST_DEBUG_OBJECT (ttaparse, "got seek event");
|
||||
+ time = GST_EVENT_SEEK_OFFSET (event);
|
||||
+ seek_frame = time / (FRAME_TIME * 1000000000);
|
||||
+ seekpos = ttaparse->index[seek_frame].pos;
|
||||
|
||||
GST_DEBUG_OBJECT (ttaparse, "seeking to %u", (guint) seekpos);
|
||||
seek_event =
|
|
@ -46,6 +46,7 @@ lib/gstreamer-%%VERSION%%/libgstaudiofilter.so
|
|||
lib/gstreamer-%%VERSION%%/libgstaudiorate.so
|
||||
lib/gstreamer-%%VERSION%%/libgstaudioscale.so
|
||||
lib/gstreamer-%%VERSION%%/libgstauparse.so
|
||||
lib/gstreamer-%%VERSION%%/libgstautodetect.so
|
||||
lib/gstreamer-%%VERSION%%/libgstavi.so
|
||||
lib/gstreamer-%%VERSION%%/libgstcdplayer.so
|
||||
lib/gstreamer-%%VERSION%%/libgstcdxaparse.so
|
||||
|
@ -55,6 +56,7 @@ lib/gstreamer-%%VERSION%%/libgstcutter.so
|
|||
lib/gstreamer-%%VERSION%%/libgstdebug.so
|
||||
lib/gstreamer-%%VERSION%%/libgstdecodebin.so
|
||||
lib/gstreamer-%%VERSION%%/libgstdeinterlace.so
|
||||
lib/gstreamer-%%VERSION%%/libgstdvdlpcmdec.so
|
||||
lib/gstreamer-%%VERSION%%/libgstefence.so
|
||||
lib/gstreamer-%%VERSION%%/libgsteffectv.so
|
||||
lib/gstreamer-%%VERSION%%/libgstequalizer.so
|
||||
|
@ -63,6 +65,7 @@ lib/gstreamer-%%VERSION%%/libgstffmpegcolorspace.so
|
|||
lib/gstreamer-%%VERSION%%/libgstfilter.so
|
||||
lib/gstreamer-%%VERSION%%/libgstflxdec.so
|
||||
lib/gstreamer-%%VERSION%%/libgstgamma.so
|
||||
lib/gstreamer-%%VERSION%%/libgstgconfelements.so
|
||||
lib/gstreamer-%%VERSION%%/libgstgoom.so
|
||||
lib/gstreamer-%%VERSION%%/libgstidct.so
|
||||
lib/gstreamer-%%VERSION%%/libgstinterleave.so
|
||||
|
@ -87,8 +90,10 @@ lib/gstreamer-%%VERSION%%/libgstoverlay.so
|
|||
lib/gstreamer-%%VERSION%%/libgstpassthrough.so
|
||||
lib/gstreamer-%%VERSION%%/libgstplaybin.so
|
||||
lib/gstreamer-%%VERSION%%/libgstplayondemand.so
|
||||
lib/gstreamer-%%VERSION%%/libgstpuzzle.so
|
||||
lib/gstreamer-%%VERSION%%/libgstqtdemux.so
|
||||
lib/gstreamer-%%VERSION%%/libgstresample.so
|
||||
lib/gstreamer-%%VERSION%%/libgstrfbsrc.so
|
||||
lib/gstreamer-%%VERSION%%/libgstriff.so
|
||||
lib/gstreamer-%%VERSION%%/libgstrmdemux.so
|
||||
lib/gstreamer-%%VERSION%%/libgstrtjpeg.so
|
||||
|
@ -100,6 +105,7 @@ lib/gstreamer-%%VERSION%%/libgstsmpte.so
|
|||
lib/gstreamer-%%VERSION%%/libgstspectrum.so
|
||||
lib/gstreamer-%%VERSION%%/libgstspeed.so
|
||||
lib/gstreamer-%%VERSION%%/libgststereo.so
|
||||
lib/gstreamer-%%VERSION%%/libgstsubparse.so
|
||||
lib/gstreamer-%%VERSION%%/libgstswitch.so
|
||||
lib/gstreamer-%%VERSION%%/libgstsynaesthesia.so
|
||||
lib/gstreamer-%%VERSION%%/libgsttagedit.so
|
||||
|
@ -159,6 +165,7 @@ share/locale/sq/LC_MESSAGES/gst-plugins-%%VERSION%%.mo
|
|||
share/locale/sr/LC_MESSAGES/gst-plugins-%%VERSION%%.mo
|
||||
share/locale/sv/LC_MESSAGES/gst-plugins-%%VERSION%%.mo
|
||||
share/locale/uk/LC_MESSAGES/gst-plugins-%%VERSION%%.mo
|
||||
share/locale/vi/LC_MESSAGES/gst-plugins-%%VERSION%%.mo
|
||||
@dirrm lib/gstreamer-%%VERSION%%
|
||||
@dirrm include/gstreamer-%%VERSION%%/gst/xwindowlistener
|
||||
@dirrm include/gstreamer-%%VERSION%%/gst/xoverlay
|
||||
|
|
|
@ -6,8 +6,8 @@
|
|||
#
|
||||
|
||||
PORTNAME= gstreamer
|
||||
PORTVERSION= 0.8.7
|
||||
PORTREVISION?= 1
|
||||
PORTVERSION= 0.8.8
|
||||
PORTREVISION?= 0
|
||||
CATEGORIES?= multimedia audio
|
||||
MASTER_SITES= ${MASTER_SITE_GNOME} \
|
||||
http://gstreamer.freedesktop.org/src/gst-plugins/
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
MD5 (gnome2/gst-plugins-0.8.7.tar.bz2) = 24030f8664b0e6f39bc31616f4953af5
|
||||
SIZE (gnome2/gst-plugins-0.8.7.tar.bz2) = 2134878
|
||||
MD5 (gnome2/gst-plugins-0.8.8.tar.bz2) = 4f6e7e730fa674ecd6ec713f937b8acb
|
||||
SIZE (gnome2/gst-plugins-0.8.8.tar.bz2) = 2214274
|
||||
|
|
|
@ -1,22 +0,0 @@
|
|||
--- ext/dirac/gstdiracdec.cc.orig Mon Feb 28 22:04:33 2005
|
||||
+++ ext/dirac/gstdiracdec.cc Mon Feb 28 22:12:15 2005
|
||||
@@ -253,13 +253,18 @@
|
||||
|
||||
case STATE_SEQUENCE:{
|
||||
guint8 *buf[3];
|
||||
+ gint fps_num, fps_denom;
|
||||
+
|
||||
+ fps_num = diracdec->decoder->seq_params.frame_rate.numerator;
|
||||
+ fps_denom = diracdec->decoder->seq_params.frame_rate.denominator;
|
||||
|
||||
/* start-of-sequence - allocate buffer */
|
||||
if (!gst_diracdec_link (diracdec,
|
||||
diracdec->decoder->seq_params.width,
|
||||
diracdec->decoder->seq_params.height,
|
||||
+ (gdouble) fps_num / (gdouble) fps_denom,
|
||||
gst_diracdec_chroma_to_fourcc (diracdec->decoder->seq_params.
|
||||
- chroma), diracdec->decoder->seq_params.frame_rate)) {
|
||||
+ chroma))) {
|
||||
GST_ELEMENT_ERROR (diracdec, CORE, NEGOTIATION, (NULL),
|
||||
("Failed to set caps to %dx%d @ %d fps (format=" GST_FOURCC_FORMAT
|
||||
"/%d)", diracdec->decoder->seq_params.width,
|
|
@ -1,11 +0,0 @@
|
|||
--- gst/tcp/gsttcpclientsrc.h.orig Wed Jun 23 23:44:07 2004
|
||||
+++ gst/tcp/gsttcpclientsrc.h Wed Jun 23 23:44:26 2004
|
||||
@@ -29,6 +29,8 @@
|
||||
#endif /* __cplusplus */
|
||||
|
||||
#include <netdb.h> /* sockaddr_in */
|
||||
+#include <sys/types.h>
|
||||
+#include <sys/socket.h>
|
||||
#include <netinet/in.h> /* sockaddr_in */
|
||||
#include <unistd.h>
|
||||
#include "gsttcp.h"
|
|
@ -1,21 +0,0 @@
|
|||
--- gst/tta/gstttaparse.c.orig Sat Jan 8 13:36:26 2005
|
||||
+++ gst/tta/gstttaparse.c Sat Jan 8 13:37:08 2005
|
||||
@@ -162,11 +162,14 @@
|
||||
case GST_EVENT_SEEK:
|
||||
{
|
||||
if (GST_EVENT_SEEK_FORMAT (event) == GST_FORMAT_TIME) {
|
||||
- GST_DEBUG_OBJECT (ttaparse, "got seek event");
|
||||
GstEvent *seek_event;
|
||||
- guint64 time = GST_EVENT_SEEK_OFFSET (event);
|
||||
- guint64 seek_frame = time / (FRAME_TIME * 1000000000);
|
||||
- guint64 seekpos = ttaparse->index[seek_frame].pos;
|
||||
+ guint64 time;
|
||||
+ guint64 seek_frame;
|
||||
+ guint64 seekpos;
|
||||
+ GST_DEBUG_OBJECT (ttaparse, "got seek event");
|
||||
+ time = GST_EVENT_SEEK_OFFSET (event);
|
||||
+ seek_frame = time / (FRAME_TIME * 1000000000);
|
||||
+ seekpos = ttaparse->index[seek_frame].pos;
|
||||
|
||||
GST_DEBUG_OBJECT (ttaparse, "seeking to %u", (guint) seekpos);
|
||||
seek_event =
|
|
@ -46,6 +46,7 @@ lib/gstreamer-%%VERSION%%/libgstaudiofilter.so
|
|||
lib/gstreamer-%%VERSION%%/libgstaudiorate.so
|
||||
lib/gstreamer-%%VERSION%%/libgstaudioscale.so
|
||||
lib/gstreamer-%%VERSION%%/libgstauparse.so
|
||||
lib/gstreamer-%%VERSION%%/libgstautodetect.so
|
||||
lib/gstreamer-%%VERSION%%/libgstavi.so
|
||||
lib/gstreamer-%%VERSION%%/libgstcdplayer.so
|
||||
lib/gstreamer-%%VERSION%%/libgstcdxaparse.so
|
||||
|
@ -55,6 +56,7 @@ lib/gstreamer-%%VERSION%%/libgstcutter.so
|
|||
lib/gstreamer-%%VERSION%%/libgstdebug.so
|
||||
lib/gstreamer-%%VERSION%%/libgstdecodebin.so
|
||||
lib/gstreamer-%%VERSION%%/libgstdeinterlace.so
|
||||
lib/gstreamer-%%VERSION%%/libgstdvdlpcmdec.so
|
||||
lib/gstreamer-%%VERSION%%/libgstefence.so
|
||||
lib/gstreamer-%%VERSION%%/libgsteffectv.so
|
||||
lib/gstreamer-%%VERSION%%/libgstequalizer.so
|
||||
|
@ -63,6 +65,7 @@ lib/gstreamer-%%VERSION%%/libgstffmpegcolorspace.so
|
|||
lib/gstreamer-%%VERSION%%/libgstfilter.so
|
||||
lib/gstreamer-%%VERSION%%/libgstflxdec.so
|
||||
lib/gstreamer-%%VERSION%%/libgstgamma.so
|
||||
lib/gstreamer-%%VERSION%%/libgstgconfelements.so
|
||||
lib/gstreamer-%%VERSION%%/libgstgoom.so
|
||||
lib/gstreamer-%%VERSION%%/libgstidct.so
|
||||
lib/gstreamer-%%VERSION%%/libgstinterleave.so
|
||||
|
@ -87,8 +90,10 @@ lib/gstreamer-%%VERSION%%/libgstoverlay.so
|
|||
lib/gstreamer-%%VERSION%%/libgstpassthrough.so
|
||||
lib/gstreamer-%%VERSION%%/libgstplaybin.so
|
||||
lib/gstreamer-%%VERSION%%/libgstplayondemand.so
|
||||
lib/gstreamer-%%VERSION%%/libgstpuzzle.so
|
||||
lib/gstreamer-%%VERSION%%/libgstqtdemux.so
|
||||
lib/gstreamer-%%VERSION%%/libgstresample.so
|
||||
lib/gstreamer-%%VERSION%%/libgstrfbsrc.so
|
||||
lib/gstreamer-%%VERSION%%/libgstriff.so
|
||||
lib/gstreamer-%%VERSION%%/libgstrmdemux.so
|
||||
lib/gstreamer-%%VERSION%%/libgstrtjpeg.so
|
||||
|
@ -100,6 +105,7 @@ lib/gstreamer-%%VERSION%%/libgstsmpte.so
|
|||
lib/gstreamer-%%VERSION%%/libgstspectrum.so
|
||||
lib/gstreamer-%%VERSION%%/libgstspeed.so
|
||||
lib/gstreamer-%%VERSION%%/libgststereo.so
|
||||
lib/gstreamer-%%VERSION%%/libgstsubparse.so
|
||||
lib/gstreamer-%%VERSION%%/libgstswitch.so
|
||||
lib/gstreamer-%%VERSION%%/libgstsynaesthesia.so
|
||||
lib/gstreamer-%%VERSION%%/libgsttagedit.so
|
||||
|
@ -159,6 +165,7 @@ share/locale/sq/LC_MESSAGES/gst-plugins-%%VERSION%%.mo
|
|||
share/locale/sr/LC_MESSAGES/gst-plugins-%%VERSION%%.mo
|
||||
share/locale/sv/LC_MESSAGES/gst-plugins-%%VERSION%%.mo
|
||||
share/locale/uk/LC_MESSAGES/gst-plugins-%%VERSION%%.mo
|
||||
share/locale/vi/LC_MESSAGES/gst-plugins-%%VERSION%%.mo
|
||||
@dirrm lib/gstreamer-%%VERSION%%
|
||||
@dirrm include/gstreamer-%%VERSION%%/gst/xwindowlistener
|
||||
@dirrm include/gstreamer-%%VERSION%%/gst/xoverlay
|
||||
|
|
Loading…
Reference in a new issue