[144048] users/devans/GNOME-3/stable/dports/gnome/ gstreamer1-gst-plugins-bad/files

devans at macports.org devans at macports.org
Wed Dec 30 14:54:04 PST 2015


Revision: 144048
          https://trac.macports.org/changeset/144048
Author:   devans at macports.org
Date:     2015-12-30 14:54:03 -0800 (Wed, 30 Dec 2015)
Log Message:
-----------
GNOME-3/stable: gstreamer1-gst-plugins-bad, remove unnecessary files now included in tarball.

Removed Paths:
-------------
    users/devans/GNOME-3/stable/dports/gnome/gstreamer1-gst-plugins-bad/files/avsamplevideosink.h
    users/devans/GNOME-3/stable/dports/gnome/gstreamer1-gst-plugins-bad/files/corevideotexturecache.h

Deleted: users/devans/GNOME-3/stable/dports/gnome/gstreamer1-gst-plugins-bad/files/avsamplevideosink.h
===================================================================
--- users/devans/GNOME-3/stable/dports/gnome/gstreamer1-gst-plugins-bad/files/avsamplevideosink.h	2015-12-30 22:48:22 UTC (rev 144047)
+++ users/devans/GNOME-3/stable/dports/gnome/gstreamer1-gst-plugins-bad/files/avsamplevideosink.h	2015-12-30 22:54:03 UTC (rev 144048)
@@ -1,77 +0,0 @@
-/*
- * GStreamer
- * Copyright (C) 2015 Matthew Waters <matthew at centricular.com>
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public
- * License along with this library; if not, write to the
- * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
- * Boston, MA 02110-1301, USA.
- */
-
-#ifndef _AV_SINK_H_
-#define _AV_SINK_H_
-
-#include <gst/gst.h>
-#include <gst/video/gstvideosink.h>
-#include <gst/video/video.h>
-
-#include <QuartzCore/QuartzCore.h>
-#include <CoreFoundation/CoreFoundation.h>
-#include <CoreMedia/CoreMedia.h>
-#include <AVFoundation/AVFoundation.h>
-
-G_BEGIN_DECLS
-
-#define GST_TYPE_AV_SAMPLE_VIDEO_SINK \
-    (gst_av_sample_video_sink_get_type())
-#define GST_AV_SAMPLE_VIDEO_SINK(obj) \
-    (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_AV_SAMPLE_VIDEO_SINK,GstAVSampleVideoSink))
-#define GST_AV_SAMPLE_VIDEO_SINK_CLASS(klass) \
-    (G_TYPE_CHECK_CLASS_CAST((klass),GST_TYPE_AV_SAMPLE_VIDEO_SINK,GstAVSampleVideoSinkClass))
-#define GST_IS_AV_SAMPLE_VIDEO_SINK(obj) \
-    (G_TYPE_CHECK_INSTANCE_TYPE((obj),GST_TYPE_AV_SAMPLE_VIDEO_SINK))
-#define GST_IS_AV_SAMPLE_VIDEO_SINK_CLASS(klass) \
-    (G_TYPE_CHECK_CLASS_TYPE((klass),GST_TYPE_AV_SAMPLE_VIDEO_SINK))
-
-typedef struct _GstAVSampleVideoSink GstAVSampleVideoSink;
-typedef struct _GstAVSampleVideoSinkClass GstAVSampleVideoSinkClass;
-
-struct _GstAVSampleVideoSink
-{
-    GstVideoSink video_sink;
-
-    AVSampleBufferDisplayLayer *layer;
-
-    GstVideoInfo info;
-
-    gboolean keep_aspect_ratio;
-
-    GstBufferPool *pool;
-
-    gboolean layer_requesting_data;
-
-    GMutex render_lock;
-    GstBuffer *buffer;
-    GstFlowReturn render_flow_return;
-};
-
-struct _GstAVSampleVideoSinkClass
-{
-    GstVideoSinkClass video_sink_class;
-};
-
-GType gst_av_sample_video_sink_get_type(void);
-
-G_END_DECLS
-
-#endif

Deleted: users/devans/GNOME-3/stable/dports/gnome/gstreamer1-gst-plugins-bad/files/corevideotexturecache.h
===================================================================
--- users/devans/GNOME-3/stable/dports/gnome/gstreamer1-gst-plugins-bad/files/corevideotexturecache.h	2015-12-30 22:48:22 UTC (rev 144047)
+++ users/devans/GNOME-3/stable/dports/gnome/gstreamer1-gst-plugins-bad/files/corevideotexturecache.h	2015-12-30 22:54:03 UTC (rev 144048)
@@ -1,52 +0,0 @@
-/*
- * Copyright (C) 2015 Alessandro Decina <twi at centricular.com>
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public
- * License along with this library; if not, write to the
- * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
- * Boston, MA 02110-1301, USA.
- */
-
-#ifndef __GST_CORE_VIDEO_TEXTURE_CACHE_H__
-#define __GST_CORE_VIDEO_TEXTURE_CACHE_H__
-
-#include <gst/video/gstvideometa.h>
-#include <gst/gl/gstglcontext.h>
-#include "CoreVideo/CoreVideo.h"
-
-G_BEGIN_DECLS
-
-typedef struct _GstCoreVideoTextureCache
-{
-  GstGLContext *ctx;
-#if !HAVE_IOS
-  CVOpenGLTextureCacheRef cache;
-#else
-  CVOpenGLESTextureCacheRef cache;
-#endif
-  GstVideoInfo input_info;
-  GstVideoInfo output_info;
-  GstGLColorConvert *convert;
-} GstCoreVideoTextureCache;
-
-GstCoreVideoTextureCache *gst_core_video_texture_cache_new (GstGLContext * ctx);
-void gst_core_video_texture_cache_free (GstCoreVideoTextureCache * cache);
-void gst_core_video_texture_cache_set_format (GstCoreVideoTextureCache * cache,
-    GstVideoFormat in_format, GstCaps * out_caps);
-gboolean gst_core_video_texture_cache_upload (GstVideoGLTextureUploadMeta * meta, guint texture_id[4]);
-GstBuffer * gst_core_video_texture_cache_get_gl_buffer (GstCoreVideoTextureCache * cache,
-        GstBuffer * cv_buffer);
-
-G_END_DECLS
-
-#endif /* __GST_CORE_VIDEO_TEXTURE_CACHE_H__ */
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/macports-changes/attachments/20151230/1b9f44bb/attachment-0001.html>


More information about the macports-changes mailing list