2011-06-04 02:41:33 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 2011 David A. Schleef <ds@schleef.org>
|
|
|
|
*
|
|
|
|
* 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
|
2012-11-03 20:38:00 +00:00
|
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
2011-06-04 02:41:33 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _GST_INTER_SURFACE_H_
|
|
|
|
#define _GST_INTER_SURFACE_H_
|
|
|
|
|
|
|
|
#include <gst/base/gstadapter.h>
|
2014-10-22 16:40:01 +00:00
|
|
|
#include <gst/audio/audio.h>
|
2011-06-04 02:41:33 +00:00
|
|
|
#include <gst/video/video.h>
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
typedef struct _GstInterSurface GstInterSurface;
|
|
|
|
|
|
|
|
struct _GstInterSurface
|
|
|
|
{
|
2013-02-09 20:22:09 +00:00
|
|
|
GMutex mutex;
|
2014-10-22 16:13:36 +00:00
|
|
|
gint ref_count;
|
|
|
|
|
2012-01-22 23:49:12 +00:00
|
|
|
char *name;
|
2011-06-04 02:41:33 +00:00
|
|
|
|
|
|
|
/* video */
|
2014-10-22 16:03:13 +00:00
|
|
|
GstVideoInfo video_info;
|
2011-06-04 02:41:33 +00:00
|
|
|
int video_buffer_count;
|
|
|
|
|
|
|
|
/* audio */
|
2014-10-22 16:40:01 +00:00
|
|
|
GstAudioInfo audio_info;
|
2014-11-04 13:56:55 +00:00
|
|
|
guint64 audio_buffer_time;
|
|
|
|
guint64 audio_latency_time;
|
|
|
|
guint64 audio_period_time;
|
2011-06-04 02:41:33 +00:00
|
|
|
|
|
|
|
GstBuffer *video_buffer;
|
2011-08-09 16:19:10 +00:00
|
|
|
GstBuffer *sub_buffer;
|
2011-06-04 02:41:33 +00:00
|
|
|
GstAdapter *audio_adapter;
|
|
|
|
};
|
|
|
|
|
2014-11-04 13:56:55 +00:00
|
|
|
#define DEFAULT_AUDIO_BUFFER_TIME (GST_SECOND)
|
|
|
|
#define DEFAULT_AUDIO_LATENCY_TIME (100 * GST_MSECOND)
|
|
|
|
#define DEFAULT_AUDIO_PERIOD_TIME (25 * GST_MSECOND)
|
|
|
|
|
2011-06-04 02:41:33 +00:00
|
|
|
|
|
|
|
GstInterSurface * gst_inter_surface_get (const char *name);
|
2012-01-22 23:49:12 +00:00
|
|
|
void gst_inter_surface_unref (GstInterSurface *surface);
|
2011-06-04 02:41:33 +00:00
|
|
|
|
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif
|