2003-11-10 18:22:20 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) <2003> Julien Moutte <julien@moutte.net>
|
|
|
|
*
|
|
|
|
* 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., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Our interfaces */
|
2003-11-22 04:06:50 +00:00
|
|
|
#include <gst/navigation/navigation.h>
|
|
|
|
#include <gst/xoverlay/xoverlay.h>
|
2003-11-10 18:22:20 +00:00
|
|
|
|
|
|
|
/* Object header */
|
|
|
|
#include "xvimagesink.h"
|
|
|
|
|
|
|
|
/* ElementFactory information */
|
|
|
|
static GstElementDetails gst_xvimagesink_details = GST_ELEMENT_DETAILS (
|
|
|
|
"Video sink",
|
|
|
|
"Sink/Video",
|
|
|
|
"A Xv based videosink",
|
|
|
|
"Julien Moutte <julien@moutte.net>"
|
|
|
|
);
|
|
|
|
|
|
|
|
/* Default template - initiated with class struct to allow gst-register to work
|
|
|
|
without X running */
|
2003-12-22 01:47:09 +00:00
|
|
|
static GstStaticPadTemplate gst_xvimagesink_sink_template_factory =
|
|
|
|
GST_STATIC_PAD_TEMPLATE (
|
2003-11-10 18:22:20 +00:00
|
|
|
"sink",
|
|
|
|
GST_PAD_SINK,
|
|
|
|
GST_PAD_ALWAYS,
|
2003-12-22 01:47:09 +00:00
|
|
|
GST_STATIC_CAPS (
|
|
|
|
"video/x-raw-rgb, "
|
|
|
|
"framerate = (double) [ 0, MAX ], "
|
|
|
|
"width = (int) [ 0, MAX ], "
|
|
|
|
"height = (int) [ 0, MAX ]; "
|
|
|
|
"video/x-raw-yuv, "
|
|
|
|
"framerate = (double) [ 0, MAX ], "
|
|
|
|
"width = (int) [ 0, MAX ], "
|
|
|
|
"height = (int) [ 0, MAX ]"
|
|
|
|
)
|
|
|
|
);
|
2003-11-10 18:22:20 +00:00
|
|
|
|
2003-11-19 20:43:49 +00:00
|
|
|
static GstVideoSinkClass *parent_class = NULL;
|
2003-11-10 18:22:20 +00:00
|
|
|
|
|
|
|
/* ============================================================= */
|
|
|
|
/* */
|
|
|
|
/* Private Methods */
|
|
|
|
/* */
|
|
|
|
/* ============================================================= */
|
|
|
|
|
|
|
|
/* X11 stuff */
|
|
|
|
|
|
|
|
/* This function handles GstXvImage creation depending on XShm availability */
|
|
|
|
static GstXvImage *
|
|
|
|
gst_xvimagesink_xvimage_new (GstXvImageSink *xvimagesink,
|
|
|
|
gint width, gint height)
|
|
|
|
{
|
|
|
|
GstXvImage *xvimage = NULL;
|
|
|
|
|
|
|
|
g_return_val_if_fail (xvimagesink != NULL, NULL);
|
|
|
|
g_return_val_if_fail (GST_IS_XVIMAGESINK (xvimagesink), NULL);
|
|
|
|
|
|
|
|
xvimage = g_new0 (GstXvImage, 1);
|
|
|
|
|
|
|
|
xvimage->width = width;
|
|
|
|
xvimage->height = height;
|
|
|
|
xvimage->data = NULL;
|
|
|
|
|
|
|
|
g_mutex_lock (xvimagesink->x_lock);
|
|
|
|
|
|
|
|
xvimage->size = (xvimagesink->xcontext->bpp / 8) * xvimage->width * xvimage->height;
|
|
|
|
|
|
|
|
#ifdef HAVE_XSHM
|
|
|
|
if (xvimagesink->xcontext->use_xshm)
|
2003-11-12 11:02:31 +00:00
|
|
|
{
|
2003-11-10 18:22:20 +00:00
|
|
|
xvimage->xvimage = XvShmCreateImage (xvimagesink->xcontext->disp,
|
|
|
|
xvimagesink->xcontext->xv_port_id,
|
|
|
|
xvimagesink->xcontext->im_format,
|
|
|
|
NULL, xvimage->width,
|
|
|
|
xvimage->height, &xvimage->SHMInfo);
|
|
|
|
|
|
|
|
xvimage->SHMInfo.shmid = shmget (IPC_PRIVATE, xvimage->size,
|
|
|
|
IPC_CREAT | 0777);
|
|
|
|
|
|
|
|
xvimage->SHMInfo.shmaddr = shmat (xvimage->SHMInfo.shmid, 0, 0);
|
|
|
|
xvimage->xvimage->data = xvimage->SHMInfo.shmaddr;
|
|
|
|
|
|
|
|
xvimage->SHMInfo.readOnly = FALSE;
|
|
|
|
|
|
|
|
XShmAttach (xvimagesink->xcontext->disp, &xvimage->SHMInfo);
|
|
|
|
}
|
|
|
|
else
|
2003-11-26 10:12:05 +00:00
|
|
|
#endif /* HAVE_XSHM */
|
2003-11-12 11:02:31 +00:00
|
|
|
{
|
2003-11-10 18:22:20 +00:00
|
|
|
xvimage->xvimage = XvCreateImage (xvimagesink->xcontext->disp,
|
|
|
|
xvimagesink->xcontext->xv_port_id,
|
|
|
|
xvimagesink->xcontext->im_format,
|
|
|
|
xvimage->data,
|
|
|
|
xvimage->width, xvimage->height);
|
|
|
|
|
|
|
|
xvimage->data = g_malloc (xvimage->xvimage->data_size);
|
|
|
|
}
|
2003-11-26 10:12:05 +00:00
|
|
|
|
2003-11-10 18:22:20 +00:00
|
|
|
if (xvimage->xvimage)
|
|
|
|
{
|
|
|
|
XSync(xvimagesink->xcontext->disp, 0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (xvimage->data)
|
|
|
|
g_free (xvimage->data);
|
|
|
|
|
|
|
|
g_free (xvimage);
|
|
|
|
|
|
|
|
xvimage = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_mutex_unlock (xvimagesink->x_lock);
|
|
|
|
|
|
|
|
return xvimage;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This function destroys a GstXvImage handling XShm availability */
|
|
|
|
static void
|
|
|
|
gst_xvimagesink_xvimage_destroy (GstXvImageSink *xvimagesink,
|
|
|
|
GstXvImage *xvimage)
|
|
|
|
{
|
|
|
|
g_return_if_fail (xvimage != NULL);
|
|
|
|
g_return_if_fail (xvimagesink != NULL);
|
|
|
|
g_return_if_fail (GST_IS_XVIMAGESINK (xvimagesink));
|
|
|
|
|
|
|
|
g_mutex_lock (xvimagesink->x_lock);
|
|
|
|
|
|
|
|
#ifdef HAVE_XSHM
|
|
|
|
if (xvimagesink->xcontext->use_xshm)
|
|
|
|
{
|
|
|
|
if (xvimage->SHMInfo.shmaddr)
|
|
|
|
XShmDetach (xvimagesink->xcontext->disp, &xvimage->SHMInfo);
|
|
|
|
|
|
|
|
if (xvimage->xvimage)
|
|
|
|
XFree (xvimage->xvimage);
|
|
|
|
|
|
|
|
if (xvimage->SHMInfo.shmaddr)
|
|
|
|
shmdt (xvimage->SHMInfo.shmaddr);
|
|
|
|
|
|
|
|
if (xvimage->SHMInfo.shmid > 0)
|
|
|
|
shmctl (xvimage->SHMInfo.shmid, IPC_RMID, 0);
|
|
|
|
}
|
|
|
|
else
|
2003-11-26 10:12:05 +00:00
|
|
|
#endif /* HAVE_XSHM */
|
2003-11-10 18:22:20 +00:00
|
|
|
{
|
|
|
|
if (xvimage->xvimage)
|
|
|
|
XFree (xvimage->xvimage);
|
|
|
|
}
|
2003-11-26 10:12:05 +00:00
|
|
|
|
2003-11-10 18:22:20 +00:00
|
|
|
g_mutex_unlock (xvimagesink->x_lock);
|
|
|
|
|
|
|
|
g_free (xvimage);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This function puts a GstXvImage on a GstXvImageSink's window */
|
|
|
|
static void
|
|
|
|
gst_xvimagesink_xvimage_put (GstXvImageSink *xvimagesink, GstXvImage *xvimage)
|
|
|
|
{
|
|
|
|
g_return_if_fail (xvimage != NULL);
|
|
|
|
g_return_if_fail (xvimagesink != NULL);
|
|
|
|
g_return_if_fail (GST_IS_XVIMAGESINK (xvimagesink));
|
|
|
|
|
|
|
|
g_mutex_lock (xvimagesink->x_lock);
|
|
|
|
|
2003-11-12 11:02:31 +00:00
|
|
|
/* We scale to the window's geometry */
|
2003-11-10 18:22:20 +00:00
|
|
|
#ifdef HAVE_XSHM
|
|
|
|
if (xvimagesink->xcontext->use_xshm)
|
|
|
|
{
|
|
|
|
XvShmPutImage (xvimagesink->xcontext->disp,
|
|
|
|
xvimagesink->xcontext->xv_port_id,
|
|
|
|
xvimagesink->xwindow->win,
|
|
|
|
xvimagesink->xwindow->gc, xvimage->xvimage,
|
|
|
|
0, 0, xvimage->width, xvimage->height,
|
2003-11-13 10:44:12 +00:00
|
|
|
0, 0, xvimagesink->xwindow->width,
|
|
|
|
xvimagesink->xwindow->height, FALSE);
|
2003-11-10 18:22:20 +00:00
|
|
|
}
|
|
|
|
else
|
2003-11-26 10:12:05 +00:00
|
|
|
#endif /* HAVE_XSHM */
|
2003-11-10 18:22:20 +00:00
|
|
|
{
|
|
|
|
XvPutImage (xvimagesink->xcontext->disp,
|
|
|
|
xvimagesink->xcontext->xv_port_id,
|
|
|
|
xvimagesink->xwindow->win,
|
|
|
|
xvimagesink->xwindow->gc, xvimage->xvimage,
|
|
|
|
0, 0, xvimage->width, xvimage->height,
|
2003-11-13 10:44:12 +00:00
|
|
|
0, 0, xvimagesink->xwindow->width,
|
|
|
|
xvimagesink->xwindow->height);
|
2003-11-10 18:22:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
XSync(xvimagesink->xcontext->disp, FALSE);
|
|
|
|
|
|
|
|
g_mutex_unlock (xvimagesink->x_lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This function handles a GstXWindow creation */
|
|
|
|
static GstXWindow *
|
|
|
|
gst_xvimagesink_xwindow_new (GstXvImageSink *xvimagesink,
|
|
|
|
gint width, gint height)
|
|
|
|
{
|
|
|
|
GstXWindow *xwindow = NULL;
|
|
|
|
XGCValues values;
|
|
|
|
|
|
|
|
g_return_val_if_fail (xvimagesink != NULL, NULL);
|
|
|
|
g_return_val_if_fail (GST_IS_XVIMAGESINK (xvimagesink), NULL);
|
|
|
|
|
|
|
|
xwindow = g_new0 (GstXWindow, 1);
|
|
|
|
|
|
|
|
xwindow->width = width;
|
|
|
|
xwindow->height = height;
|
2003-11-17 16:32:29 +00:00
|
|
|
xwindow->internal = TRUE;
|
2003-11-10 18:22:20 +00:00
|
|
|
|
|
|
|
g_mutex_lock (xvimagesink->x_lock);
|
|
|
|
|
|
|
|
xwindow->win = XCreateSimpleWindow (xvimagesink->xcontext->disp,
|
|
|
|
xvimagesink->xcontext->root,
|
|
|
|
0, 0, xwindow->width, xwindow->height,
|
|
|
|
0, 0, xvimagesink->xcontext->black);
|
|
|
|
|
2003-11-13 10:44:12 +00:00
|
|
|
XSelectInput (xvimagesink->xcontext->disp, xwindow->win, ExposureMask |
|
|
|
|
StructureNotifyMask | PointerMotionMask | KeyPressMask |
|
|
|
|
KeyReleaseMask | ButtonPressMask | ButtonReleaseMask);
|
2003-11-10 18:22:20 +00:00
|
|
|
|
|
|
|
xwindow->gc = XCreateGC (xvimagesink->xcontext->disp,
|
|
|
|
xwindow->win, 0, &values);
|
|
|
|
|
|
|
|
XMapRaised (xvimagesink->xcontext->disp, xwindow->win);
|
|
|
|
|
|
|
|
g_mutex_unlock (xvimagesink->x_lock);
|
|
|
|
|
|
|
|
return xwindow;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This function destroys a GstXWindow */
|
|
|
|
static void
|
|
|
|
gst_xvimagesink_xwindow_destroy (GstXvImageSink *xvimagesink, GstXWindow *xwindow)
|
|
|
|
{
|
|
|
|
g_return_if_fail (xwindow != NULL);
|
|
|
|
g_return_if_fail (xvimagesink != NULL);
|
|
|
|
g_return_if_fail (GST_IS_XVIMAGESINK (xvimagesink));
|
|
|
|
|
|
|
|
g_mutex_lock (xvimagesink->x_lock);
|
|
|
|
|
2003-11-17 16:32:29 +00:00
|
|
|
/* If we did not create that window we just free the GC and let it live */
|
|
|
|
if (xwindow->internal)
|
|
|
|
XDestroyWindow (xvimagesink->xcontext->disp, xwindow->win);
|
2003-11-10 18:22:20 +00:00
|
|
|
|
|
|
|
XFreeGC (xvimagesink->xcontext->disp, xwindow->gc);
|
|
|
|
|
|
|
|
g_mutex_unlock (xvimagesink->x_lock);
|
|
|
|
|
|
|
|
g_free (xwindow);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This function handles XEvents that might be in the queue. It generates
|
|
|
|
GstEvent that will be sent upstream in the pipeline to handle interactivity
|
|
|
|
and navigation. It will also listen for configure events on the window to
|
|
|
|
trigger caps renegotiation so on the fly software scaling can work. */
|
|
|
|
static void
|
|
|
|
gst_xvimagesink_handle_xevents (GstXvImageSink *xvimagesink, GstPad *pad)
|
|
|
|
{
|
|
|
|
XEvent e;
|
|
|
|
|
|
|
|
g_return_if_fail (xvimagesink != NULL);
|
|
|
|
g_return_if_fail (GST_IS_XVIMAGESINK (xvimagesink));
|
|
|
|
|
|
|
|
/* We get all events on our window to throw them upstream */
|
|
|
|
g_mutex_lock (xvimagesink->x_lock);
|
|
|
|
while (XCheckWindowEvent (xvimagesink->xcontext->disp,
|
|
|
|
xvimagesink->xwindow->win,
|
2003-11-13 10:44:12 +00:00
|
|
|
ExposureMask | StructureNotifyMask |
|
2003-11-10 18:22:20 +00:00
|
|
|
PointerMotionMask | KeyPressMask |
|
|
|
|
KeyReleaseMask | ButtonPressMask |
|
|
|
|
ButtonReleaseMask, &e))
|
|
|
|
{
|
2003-11-11 00:43:29 +00:00
|
|
|
KeySym keysym;
|
2003-11-10 18:22:20 +00:00
|
|
|
|
|
|
|
/* We lock only for the X function call */
|
|
|
|
g_mutex_unlock (xvimagesink->x_lock);
|
|
|
|
|
|
|
|
switch (e.type)
|
|
|
|
{
|
2003-11-13 10:44:12 +00:00
|
|
|
case ConfigureNotify:
|
|
|
|
/* Window got resized or moved. We update our data. */
|
|
|
|
GST_DEBUG ("ximagesink window is at %d, %d with geometry : %d,%d",
|
|
|
|
e.xconfigure.x, e.xconfigure.y,
|
|
|
|
e.xconfigure.width, e.xconfigure.height);
|
|
|
|
xvimagesink->xwindow->width = e.xconfigure.width;
|
|
|
|
xvimagesink->xwindow->height = e.xconfigure.height;
|
|
|
|
break;
|
2003-11-10 18:22:20 +00:00
|
|
|
case MotionNotify:
|
|
|
|
/* Mouse pointer moved over our window. We send upstream
|
|
|
|
events for interactivity/navigation */
|
|
|
|
GST_DEBUG ("xvimagesink pointer moved over window at %d,%d",
|
|
|
|
e.xmotion.x, e.xmotion.y);
|
2003-11-11 00:43:29 +00:00
|
|
|
gst_navigation_send_mouse_event (GST_NAVIGATION (xvimagesink),
|
2003-11-12 11:02:31 +00:00
|
|
|
e.xmotion.x, e.xmotion.y);
|
2003-11-10 18:22:20 +00:00
|
|
|
break;
|
|
|
|
case ButtonPress:
|
|
|
|
case ButtonRelease:
|
|
|
|
/* Mouse button pressed/released over our window. We send upstream
|
|
|
|
events for interactivity/navigation */
|
|
|
|
GST_DEBUG ("xvimagesink button %d pressed over window at %d,%d",
|
2003-11-11 00:43:29 +00:00
|
|
|
e.xbutton.button, e.xbutton.x, e.xbutton.y);
|
|
|
|
gst_navigation_send_mouse_event (GST_NAVIGATION (xvimagesink),
|
2003-11-12 11:02:31 +00:00
|
|
|
e.xbutton.x, e.xbutton.y);
|
2003-11-10 18:22:20 +00:00
|
|
|
break;
|
|
|
|
case KeyPress:
|
|
|
|
case KeyRelease:
|
|
|
|
/* Key pressed/released over our window. We send upstream
|
|
|
|
events for interactivity/navigation */
|
|
|
|
GST_DEBUG ("xvimagesink key %d pressed over window at %d,%d",
|
2003-11-11 00:43:29 +00:00
|
|
|
e.xkey.keycode, e.xkey.x, e.xkey.y);
|
2003-11-12 11:02:31 +00:00
|
|
|
keysym = XKeycodeToKeysym (xvimagesink->xcontext->disp,
|
|
|
|
e.xkey.keycode, 0);
|
2003-11-11 00:43:29 +00:00
|
|
|
gst_navigation_send_key_event (GST_NAVIGATION (xvimagesink),
|
2003-11-12 11:02:31 +00:00
|
|
|
XKeysymToString (keysym));
|
2003-11-10 18:22:20 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
GST_DEBUG ("xvimagesink unhandled X event (%d)", e.type);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_mutex_lock (xvimagesink->x_lock);
|
|
|
|
}
|
|
|
|
g_mutex_unlock (xvimagesink->x_lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstCaps *
|
|
|
|
gst_xvimagesink_get_xv_support (GstXContext *xcontext)
|
|
|
|
{
|
|
|
|
gint i, nb_adaptors;
|
|
|
|
XvAdaptorInfo *adaptors;
|
|
|
|
|
|
|
|
g_return_val_if_fail (xcontext != NULL, NULL);
|
|
|
|
|
|
|
|
/* First let's check that XVideo extension is available */
|
|
|
|
if (!XQueryExtension (xcontext->disp, "XVideo", &i, &i, &i))
|
2003-11-28 21:47:51 +00:00
|
|
|
{
|
|
|
|
GST_DEBUG ("XVideo extension is not available");
|
|
|
|
return NULL;
|
|
|
|
}
|
2003-11-10 18:22:20 +00:00
|
|
|
|
|
|
|
/* Then we get adaptors list */
|
|
|
|
if (Success != XvQueryAdaptors (xcontext->disp, xcontext->root,
|
|
|
|
&nb_adaptors, &adaptors))
|
2003-11-28 21:47:51 +00:00
|
|
|
{
|
|
|
|
GST_DEBUG ("Failed getting XV adaptors list");
|
|
|
|
return NULL;
|
|
|
|
}
|
2003-11-10 18:22:20 +00:00
|
|
|
|
|
|
|
xcontext->xv_port_id = 0;
|
|
|
|
|
2003-11-28 21:47:51 +00:00
|
|
|
GST_DEBUG ("Found %d XV adaptor(s)", nb_adaptors);
|
|
|
|
|
2003-11-10 18:22:20 +00:00
|
|
|
/* Now search for an adaptor that supports XvImageMask */
|
|
|
|
for (i = 0; i < nb_adaptors && !xcontext->xv_port_id; i++)
|
|
|
|
{
|
|
|
|
if (adaptors[i].type & XvImageMask)
|
|
|
|
{
|
|
|
|
gint j;
|
|
|
|
|
|
|
|
/* We found such an adaptor, looking for an available port */
|
|
|
|
for (j = 0; j < adaptors[i].num_ports && !xcontext->xv_port_id; j++)
|
|
|
|
{
|
|
|
|
/* We try to grab the port */
|
|
|
|
if (Success == XvGrabPort (xcontext->disp,
|
|
|
|
adaptors[i].base_id + j, 0))
|
|
|
|
{
|
|
|
|
xcontext->xv_port_id = adaptors[i].base_id + j;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_DEBUG ("XV Adaptor %s with %ld ports", adaptors[i].name,
|
|
|
|
adaptors[i].num_ports);
|
|
|
|
|
|
|
|
}
|
2003-12-27 15:37:43 +00:00
|
|
|
XvFreeAdaptorInfo (adaptors);
|
2003-11-10 18:22:20 +00:00
|
|
|
|
|
|
|
if (xcontext->xv_port_id)
|
|
|
|
{
|
|
|
|
gint nb_formats;
|
|
|
|
XvImageFormatValues *formats = NULL;
|
|
|
|
GstCaps *caps = NULL;
|
|
|
|
|
|
|
|
/* We get all image formats supported by our port */
|
|
|
|
formats = XvListImageFormats (xcontext->disp,
|
|
|
|
xcontext->xv_port_id, &nb_formats);
|
2003-12-22 01:47:09 +00:00
|
|
|
caps = gst_caps_new_empty ();
|
2003-11-10 18:22:20 +00:00
|
|
|
for (i = 0; i < nb_formats; i++)
|
|
|
|
{
|
|
|
|
GstCaps *format_caps = NULL;
|
|
|
|
|
|
|
|
switch (formats[i].type)
|
|
|
|
{
|
|
|
|
case XvRGB:
|
2003-11-28 21:47:51 +00:00
|
|
|
{
|
2003-12-22 01:47:09 +00:00
|
|
|
format_caps = gst_caps_new_simple ("video/x-raw-rgb",
|
|
|
|
"endianness", G_TYPE_INT, xcontext->endianness,
|
|
|
|
"depth", G_TYPE_INT, xcontext->depth,
|
|
|
|
"bpp", G_TYPE_INT, xcontext->bpp,
|
|
|
|
"blue_mask", G_TYPE_INT, formats[i].red_mask,
|
|
|
|
"green_mask", G_TYPE_INT, formats[i].green_mask,
|
|
|
|
"red_mask", G_TYPE_INT, formats[i].blue_mask,
|
|
|
|
"width", GST_TYPE_INT_RANGE, 0, G_MAXINT,
|
|
|
|
"height", GST_TYPE_INT_RANGE, 0, G_MAXINT,
|
|
|
|
"framerate", GST_TYPE_DOUBLE_RANGE, 0.0, G_MAXDOUBLE,
|
|
|
|
NULL);
|
2003-11-28 21:47:51 +00:00
|
|
|
|
|
|
|
/* For RGB caps we store them and the image
|
|
|
|
format so that we can get back the format
|
|
|
|
when sinkconnect will give us a caps without
|
|
|
|
format property */
|
|
|
|
if (format_caps)
|
|
|
|
{
|
|
|
|
GstXvImageFormat *format = NULL;
|
|
|
|
format = g_new0 (GstXvImageFormat, 1);
|
|
|
|
if (format)
|
|
|
|
{
|
|
|
|
format->format = formats[i].id;
|
|
|
|
format->caps = gst_caps_copy (format_caps);
|
|
|
|
xcontext->formats_list = g_list_append (
|
|
|
|
xcontext->formats_list, format);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2003-11-10 18:22:20 +00:00
|
|
|
case XvYUV:
|
2003-12-22 01:47:09 +00:00
|
|
|
format_caps = gst_caps_new_simple ("video/x-raw-yuv",
|
|
|
|
"format", GST_TYPE_FOURCC,formats[i].id,
|
|
|
|
"width", GST_TYPE_INT_RANGE, 0, G_MAXINT,
|
|
|
|
"height", GST_TYPE_INT_RANGE, 0, G_MAXINT,
|
|
|
|
"framerate", GST_TYPE_DOUBLE_RANGE, 0.0, G_MAXDOUBLE,
|
|
|
|
NULL);
|
2003-11-10 18:22:20 +00:00
|
|
|
break;
|
2003-12-22 01:47:09 +00:00
|
|
|
default:
|
|
|
|
g_assert_not_reached();
|
|
|
|
break;
|
2003-11-10 18:22:20 +00:00
|
|
|
}
|
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
gst_caps_append (caps, format_caps);
|
2003-11-10 18:22:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (formats)
|
|
|
|
XFree (formats);
|
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
GST_DEBUG_CAPS ("Generated the following caps", caps);
|
|
|
|
|
2003-11-10 18:22:20 +00:00
|
|
|
return caps;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This function get the X Display and global infos about it. Everything is
|
|
|
|
stored in our object and will be cleaned when the object is disposed. Note
|
|
|
|
here that caps for supported format are generated without any window or
|
|
|
|
image creation */
|
|
|
|
static GstXContext *
|
|
|
|
gst_xvimagesink_xcontext_get (GstXvImageSink *xvimagesink)
|
|
|
|
{
|
|
|
|
GstXContext *xcontext = NULL;
|
|
|
|
XPixmapFormatValues *px_formats = NULL;
|
|
|
|
gint nb_formats = 0, i;
|
|
|
|
|
|
|
|
g_return_val_if_fail (xvimagesink != NULL, NULL);
|
|
|
|
g_return_val_if_fail (GST_IS_XVIMAGESINK (xvimagesink), NULL);
|
|
|
|
|
|
|
|
xcontext = g_new0 (GstXContext, 1);
|
|
|
|
|
|
|
|
g_mutex_lock (xvimagesink->x_lock);
|
|
|
|
|
|
|
|
xcontext->disp = XOpenDisplay (NULL);
|
|
|
|
|
|
|
|
if (!xcontext->disp)
|
|
|
|
{
|
|
|
|
g_mutex_unlock (xvimagesink->x_lock);
|
|
|
|
g_free (xcontext);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
xcontext->screen = DefaultScreenOfDisplay (xcontext->disp);
|
|
|
|
xcontext->screen_num = DefaultScreen (xcontext->disp);
|
|
|
|
xcontext->visual = DefaultVisual(xcontext->disp, xcontext->screen_num);
|
|
|
|
xcontext->root = DefaultRootWindow (xcontext->disp);
|
|
|
|
xcontext->white = XWhitePixel (xcontext->disp, xcontext->screen_num);
|
|
|
|
xcontext->black = XBlackPixel (xcontext->disp, xcontext->screen_num);
|
|
|
|
xcontext->depth = DefaultDepthOfScreen (xcontext->screen);
|
|
|
|
|
|
|
|
/* We get supported pixmap formats at supported depth */
|
|
|
|
px_formats = XListPixmapFormats (xcontext->disp, &nb_formats);
|
|
|
|
|
|
|
|
if (!px_formats)
|
|
|
|
{
|
|
|
|
XCloseDisplay (xcontext->disp);
|
|
|
|
g_mutex_unlock (xvimagesink->x_lock);
|
|
|
|
g_free (xcontext);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We get bpp value corresponding to our running depth */
|
|
|
|
for (i=0; i<nb_formats; i++)
|
|
|
|
{
|
|
|
|
if (px_formats[i].depth == xcontext->depth)
|
|
|
|
xcontext->bpp = px_formats[i].bits_per_pixel;
|
|
|
|
}
|
|
|
|
|
|
|
|
XFree (px_formats);
|
|
|
|
|
|
|
|
xcontext->endianness = (ImageByteOrder (xcontext->disp) == LSBFirst) ? G_LITTLE_ENDIAN:G_BIG_ENDIAN;
|
|
|
|
|
|
|
|
#ifdef HAVE_XSHM
|
|
|
|
/* Search for XShm extension support */
|
|
|
|
if (XQueryExtension (xcontext->disp, "MIT-SHM", &i, &i, &i))
|
|
|
|
{
|
|
|
|
xcontext->use_xshm = TRUE;
|
|
|
|
GST_DEBUG ("xvimagesink is using XShm extension");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
xcontext->use_xshm = FALSE;
|
|
|
|
GST_DEBUG ("xvimagesink is not using XShm extension");
|
|
|
|
}
|
|
|
|
#endif /* HAVE_XSHM */
|
|
|
|
|
|
|
|
if (xcontext->endianness == G_LITTLE_ENDIAN && xcontext->depth == 24)
|
|
|
|
{
|
|
|
|
xcontext->endianness = G_BIG_ENDIAN;
|
|
|
|
xcontext->visual->red_mask = GUINT32_SWAP_LE_BE (xcontext->visual->red_mask);
|
|
|
|
xcontext->visual->green_mask = GUINT32_SWAP_LE_BE (xcontext->visual->green_mask);
|
|
|
|
xcontext->visual->blue_mask = GUINT32_SWAP_LE_BE (xcontext->visual->blue_mask);
|
|
|
|
}
|
|
|
|
|
|
|
|
xcontext->caps = gst_xvimagesink_get_xv_support (xcontext);
|
|
|
|
|
|
|
|
if (!xcontext->caps)
|
|
|
|
{
|
|
|
|
XCloseDisplay (xcontext->disp);
|
|
|
|
g_mutex_unlock (xvimagesink->x_lock);
|
|
|
|
g_free (xcontext);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_mutex_unlock (xvimagesink->x_lock);
|
|
|
|
|
|
|
|
return xcontext;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This function cleans the X context. Closing the Display, releasing the XV
|
|
|
|
port and unrefing the caps for supported formats. */
|
|
|
|
static void
|
|
|
|
gst_xvimagesink_xcontext_clear (GstXvImageSink *xvimagesink)
|
|
|
|
{
|
2003-11-28 21:47:51 +00:00
|
|
|
GList *list;
|
|
|
|
|
2003-11-10 18:22:20 +00:00
|
|
|
g_return_if_fail (xvimagesink != NULL);
|
|
|
|
g_return_if_fail (GST_IS_XVIMAGESINK (xvimagesink));
|
|
|
|
|
2003-11-28 21:47:51 +00:00
|
|
|
list = xvimagesink->xcontext->formats_list;
|
|
|
|
|
|
|
|
while (list)
|
|
|
|
{
|
|
|
|
GstXvImageFormat *format = list->data;
|
2003-12-22 01:47:09 +00:00
|
|
|
gst_caps_free (format->caps);
|
2003-11-28 21:47:51 +00:00
|
|
|
g_free (format);
|
|
|
|
list = g_list_next (list);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (xvimagesink->xcontext->formats_list)
|
|
|
|
g_list_free (xvimagesink->xcontext->formats_list);
|
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
gst_caps_free (xvimagesink->xcontext->caps);
|
2003-11-10 18:22:20 +00:00
|
|
|
|
|
|
|
g_mutex_lock (xvimagesink->x_lock);
|
|
|
|
|
|
|
|
XvUngrabPort (xvimagesink->xcontext->disp,
|
|
|
|
xvimagesink->xcontext->xv_port_id, 0);
|
|
|
|
|
|
|
|
XCloseDisplay (xvimagesink->xcontext->disp);
|
|
|
|
|
|
|
|
g_mutex_unlock (xvimagesink->x_lock);
|
|
|
|
|
|
|
|
xvimagesink->xcontext = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Element stuff */
|
|
|
|
|
2004-01-02 10:04:34 +00:00
|
|
|
static GstCaps *
|
|
|
|
gst_xvimagesink_fixate (GstPad *pad, const GstCaps *caps, gpointer ignore)
|
|
|
|
{
|
|
|
|
GstStructure *structure;
|
|
|
|
GstCaps *newcaps;
|
|
|
|
|
|
|
|
if (gst_caps_get_size (caps) > 1) return NULL;
|
|
|
|
|
|
|
|
newcaps = gst_caps_copy (caps);
|
|
|
|
structure = gst_caps_get_structure (newcaps, 0);
|
|
|
|
|
|
|
|
if (gst_caps_structure_fixate_field_nearest_int (structure, "width", 320)) {
|
|
|
|
return newcaps;
|
|
|
|
}
|
|
|
|
if (gst_caps_structure_fixate_field_nearest_int (structure, "height", 240)) {
|
|
|
|
return newcaps;
|
|
|
|
}
|
|
|
|
if (gst_caps_structure_fixate_field_nearest_double (structure, "framerate",
|
|
|
|
30.0)) {
|
|
|
|
return newcaps;
|
|
|
|
}
|
|
|
|
|
|
|
|
gst_caps_free (newcaps);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2003-11-28 21:47:51 +00:00
|
|
|
static gint
|
|
|
|
gst_xvimagesink_get_fourcc_from_caps (GstXvImageSink *xvimagesink,
|
|
|
|
GstCaps *caps)
|
|
|
|
{
|
|
|
|
GList *list = NULL;
|
|
|
|
|
|
|
|
g_return_val_if_fail (xvimagesink != NULL, 0);
|
|
|
|
g_return_val_if_fail (GST_IS_XVIMAGESINK (xvimagesink), 0);
|
|
|
|
|
|
|
|
list = xvimagesink->xcontext->formats_list;
|
|
|
|
|
|
|
|
while (list)
|
|
|
|
{
|
|
|
|
GstXvImageFormat *format = list->data;
|
|
|
|
|
|
|
|
if (format)
|
|
|
|
{
|
|
|
|
GstCaps *icaps = NULL;
|
|
|
|
icaps = gst_caps_intersect (caps, format->caps);
|
2003-12-22 01:47:09 +00:00
|
|
|
if (!gst_caps_is_empty(icaps))
|
|
|
|
return format->format;
|
2003-11-28 21:47:51 +00:00
|
|
|
}
|
|
|
|
list = g_list_next (list);
|
|
|
|
}
|
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
return 0;
|
2003-11-28 21:47:51 +00:00
|
|
|
}
|
|
|
|
|
2003-11-10 18:22:20 +00:00
|
|
|
static GstCaps *
|
2003-12-22 01:47:09 +00:00
|
|
|
gst_xvimagesink_getcaps (GstPad *pad)
|
2003-11-10 18:22:20 +00:00
|
|
|
{
|
|
|
|
GstXvImageSink *xvimagesink;
|
2003-12-22 01:47:09 +00:00
|
|
|
|
2003-11-10 18:22:20 +00:00
|
|
|
xvimagesink = GST_XVIMAGESINK (gst_pad_get_parent (pad));
|
|
|
|
|
|
|
|
if (xvimagesink->xcontext)
|
|
|
|
return gst_caps_copy (xvimagesink->xcontext->caps);
|
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
return gst_caps_from_string(
|
|
|
|
"video/x-raw-rgb, "
|
|
|
|
"framerate = (double) [ 0, MAX ], "
|
|
|
|
"width = (int) [ 0, MAX ], "
|
|
|
|
"height = (int) [ 0, MAX ]; "
|
|
|
|
"video/x-raw-yuv, "
|
|
|
|
"framerate = (double) [ 0, MAX ], "
|
|
|
|
"width = (int) [ 0, MAX ], "
|
|
|
|
"height = (int) [ 0, MAX ]");
|
2003-11-10 18:22:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static GstPadLinkReturn
|
2003-12-22 01:47:09 +00:00
|
|
|
gst_xvimagesink_sinkconnect (GstPad *pad, const GstCaps *caps)
|
2003-11-10 18:22:20 +00:00
|
|
|
{
|
|
|
|
GstXvImageSink *xvimagesink;
|
2003-11-26 10:12:05 +00:00
|
|
|
char *caps_str1, *caps_str2;
|
2003-12-22 01:47:09 +00:00
|
|
|
GstStructure *structure;
|
|
|
|
gboolean ret;
|
2003-11-10 18:22:20 +00:00
|
|
|
|
|
|
|
xvimagesink = GST_XVIMAGESINK (gst_pad_get_parent (pad));
|
|
|
|
|
2003-11-26 10:12:05 +00:00
|
|
|
caps_str1 = gst_caps_to_string (xvimagesink->xcontext->caps);
|
|
|
|
caps_str2 = gst_caps_to_string (caps);
|
|
|
|
|
|
|
|
GST_DEBUG ("sinkconnect %s with %s", caps_str1, caps_str2);
|
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
g_free (caps_str1);
|
|
|
|
g_free (caps_str2);
|
|
|
|
|
|
|
|
structure = gst_caps_get_structure (caps, 0);
|
|
|
|
ret = gst_structure_get_int (structure, "width", &(GST_VIDEOSINK_WIDTH (xvimagesink)));
|
|
|
|
ret &= gst_structure_get_int (structure, "height", &(GST_VIDEOSINK_HEIGHT (xvimagesink)));
|
|
|
|
ret &= gst_structure_get_double (structure, "framerate", &xvimagesink->framerate);
|
|
|
|
if (!ret) return GST_PAD_LINK_REFUSED;
|
|
|
|
|
2004-01-02 10:04:34 +00:00
|
|
|
xvimagesink->xcontext->im_format = 0;
|
2003-12-22 01:47:09 +00:00
|
|
|
if (!gst_structure_get_fourcc (structure, "format",
|
|
|
|
&xvimagesink->xcontext->im_format)) {
|
2003-11-28 21:47:51 +00:00
|
|
|
xvimagesink->xcontext->im_format = gst_xvimagesink_get_fourcc_from_caps (
|
2003-12-22 01:47:09 +00:00
|
|
|
xvimagesink, gst_caps_copy(caps));
|
|
|
|
}
|
2004-01-02 10:04:34 +00:00
|
|
|
if (xvimagesink->xcontext->im_format == 0) {
|
|
|
|
return GST_PAD_LINK_REFUSED;
|
|
|
|
}
|
2003-11-10 18:22:20 +00:00
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
xvimagesink->pixel_width = 1;
|
|
|
|
gst_structure_get_int (structure, "pixel_width", &xvimagesink->pixel_width);
|
2003-11-10 18:22:20 +00:00
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
xvimagesink->pixel_height = 1;
|
|
|
|
gst_structure_get_int (structure, "pixel_height", &xvimagesink->pixel_height);
|
2003-11-10 18:22:20 +00:00
|
|
|
|
|
|
|
/* Creating our window and our image */
|
|
|
|
if (!xvimagesink->xwindow)
|
|
|
|
xvimagesink->xwindow = gst_xvimagesink_xwindow_new (xvimagesink,
|
2003-11-19 20:43:49 +00:00
|
|
|
GST_VIDEOSINK_WIDTH (xvimagesink),
|
|
|
|
GST_VIDEOSINK_HEIGHT (xvimagesink));
|
2003-11-10 18:22:20 +00:00
|
|
|
|
|
|
|
if ( (xvimagesink->xvimage) &&
|
2003-11-19 20:43:49 +00:00
|
|
|
( (GST_VIDEOSINK_WIDTH (xvimagesink) != xvimagesink->xvimage->width) ||
|
|
|
|
(GST_VIDEOSINK_HEIGHT (xvimagesink) != xvimagesink->xvimage->height) ) )
|
2003-11-10 18:22:20 +00:00
|
|
|
{ /* We renew our xvimage only if size changed */
|
|
|
|
gst_xvimagesink_xvimage_destroy (xvimagesink, xvimagesink->xvimage);
|
|
|
|
|
|
|
|
xvimagesink->xvimage = gst_xvimagesink_xvimage_new (xvimagesink,
|
2003-11-19 20:43:49 +00:00
|
|
|
GST_VIDEOSINK_WIDTH (xvimagesink),
|
|
|
|
GST_VIDEOSINK_HEIGHT (xvimagesink));
|
2003-11-10 18:22:20 +00:00
|
|
|
}
|
|
|
|
else if (!xvimagesink->xvimage) /* If no xvimage, creating one */
|
|
|
|
xvimagesink->xvimage = gst_xvimagesink_xvimage_new (xvimagesink,
|
2003-11-19 20:43:49 +00:00
|
|
|
GST_VIDEOSINK_WIDTH (xvimagesink),
|
|
|
|
GST_VIDEOSINK_HEIGHT (xvimagesink));
|
2003-11-10 18:22:20 +00:00
|
|
|
|
2003-11-19 20:43:49 +00:00
|
|
|
gst_video_sink_got_video_size (GST_VIDEOSINK (xvimagesink),
|
|
|
|
GST_VIDEOSINK_WIDTH (xvimagesink),
|
|
|
|
GST_VIDEOSINK_HEIGHT (xvimagesink));
|
2003-11-17 16:32:29 +00:00
|
|
|
|
2003-11-10 18:22:20 +00:00
|
|
|
return GST_PAD_LINK_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstElementStateReturn
|
|
|
|
gst_xvimagesink_change_state (GstElement *element)
|
|
|
|
{
|
|
|
|
GstXvImageSink *xvimagesink;
|
|
|
|
|
|
|
|
xvimagesink = GST_XVIMAGESINK (element);
|
|
|
|
|
|
|
|
switch (GST_STATE_TRANSITION (element)) {
|
|
|
|
case GST_STATE_NULL_TO_READY:
|
|
|
|
/* Initializing the XContext */
|
2003-11-17 16:32:29 +00:00
|
|
|
if (!xvimagesink->xcontext)
|
|
|
|
xvimagesink->xcontext = gst_xvimagesink_xcontext_get (xvimagesink);
|
2003-11-10 18:22:20 +00:00
|
|
|
if (!xvimagesink->xcontext)
|
|
|
|
return GST_STATE_FAILURE;
|
|
|
|
break;
|
|
|
|
case GST_STATE_READY_TO_PAUSED:
|
2003-12-14 05:10:28 +00:00
|
|
|
xvimagesink->time = 0;
|
2003-11-10 18:22:20 +00:00
|
|
|
break;
|
|
|
|
case GST_STATE_PAUSED_TO_PLAYING:
|
|
|
|
break;
|
|
|
|
case GST_STATE_PLAYING_TO_PAUSED:
|
|
|
|
break;
|
|
|
|
case GST_STATE_PAUSED_TO_READY:
|
2003-12-14 05:10:28 +00:00
|
|
|
xvimagesink->framerate = 0;
|
2003-11-10 18:22:20 +00:00
|
|
|
break;
|
|
|
|
case GST_STATE_READY_TO_NULL:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2003-11-19 20:43:49 +00:00
|
|
|
if (GST_ELEMENT_CLASS (parent_class)->change_state)
|
|
|
|
return GST_ELEMENT_CLASS (parent_class)->change_state (element);
|
2003-12-14 11:42:16 +00:00
|
|
|
|
2003-11-10 18:22:20 +00:00
|
|
|
return GST_STATE_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2003-12-14 05:10:28 +00:00
|
|
|
gst_xvimagesink_chain (GstPad *pad, GstData *data)
|
2003-11-10 18:22:20 +00:00
|
|
|
{
|
2003-12-14 11:42:16 +00:00
|
|
|
GstBuffer *buf = NULL;
|
2003-11-10 18:22:20 +00:00
|
|
|
GstXvImageSink *xvimagesink;
|
2003-12-14 11:42:16 +00:00
|
|
|
|
2003-11-10 18:22:20 +00:00
|
|
|
g_return_if_fail (pad != NULL);
|
|
|
|
g_return_if_fail (GST_IS_PAD (pad));
|
2003-12-14 11:42:16 +00:00
|
|
|
g_return_if_fail (data != NULL);
|
2003-11-10 18:22:20 +00:00
|
|
|
|
|
|
|
xvimagesink = GST_XVIMAGESINK (gst_pad_get_parent (pad));
|
|
|
|
|
2003-12-14 05:10:28 +00:00
|
|
|
if (GST_IS_EVENT (data))
|
2003-11-10 18:22:20 +00:00
|
|
|
{
|
2003-12-14 05:10:28 +00:00
|
|
|
GstEvent *event = GST_EVENT (data);
|
2003-11-10 18:22:20 +00:00
|
|
|
gint64 offset;
|
|
|
|
|
|
|
|
switch (GST_EVENT_TYPE (event))
|
|
|
|
{
|
|
|
|
case GST_EVENT_DISCONTINUOUS:
|
|
|
|
offset = GST_EVENT_DISCONT_OFFSET (event, 0).value;
|
|
|
|
GST_DEBUG ("xvimage discont %" G_GINT64_FORMAT "\n", offset);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
gst_pad_event_default (pad, event);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
gst_event_unref (event);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2003-12-14 05:10:28 +00:00
|
|
|
buf = GST_BUFFER (data);
|
|
|
|
/* update time */
|
|
|
|
if (GST_BUFFER_TIMESTAMP_IS_VALID (buf)) {
|
|
|
|
xvimagesink->time = GST_BUFFER_TIMESTAMP (buf);
|
|
|
|
}
|
|
|
|
GST_DEBUG ("videosink: clock wait: %" G_GUINT64_FORMAT, xvimagesink->time);
|
2003-11-10 18:22:20 +00:00
|
|
|
|
2003-11-19 20:43:49 +00:00
|
|
|
if (GST_VIDEOSINK_CLOCK (xvimagesink)) {
|
|
|
|
GstClockID id;
|
2003-12-14 05:10:28 +00:00
|
|
|
id = gst_clock_new_single_shot_id (GST_VIDEOSINK_CLOCK (xvimagesink), xvimagesink->time);
|
2003-11-10 18:22:20 +00:00
|
|
|
gst_element_clock_wait (GST_ELEMENT (xvimagesink), id, NULL);
|
|
|
|
gst_clock_id_free (id);
|
|
|
|
}
|
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
#if 0
|
2003-11-10 18:22:20 +00:00
|
|
|
/* If we have a pool and the image is from this pool, simply put it. */
|
|
|
|
if ( (xvimagesink->bufferpool) &&
|
|
|
|
(GST_BUFFER_BUFFERPOOL (buf) == xvimagesink->bufferpool) )
|
|
|
|
gst_xvimagesink_xvimage_put (xvimagesink, GST_BUFFER_POOL_PRIVATE (buf));
|
|
|
|
else /* Else we have to copy the data into our private image, */
|
|
|
|
{ /* if we have one... */
|
2003-12-22 01:47:09 +00:00
|
|
|
#endif
|
2003-11-10 18:22:20 +00:00
|
|
|
if (xvimagesink->xvimage)
|
|
|
|
{
|
|
|
|
memcpy (xvimagesink->xvimage->xvimage->data,
|
|
|
|
GST_BUFFER_DATA (buf),
|
|
|
|
MIN (GST_BUFFER_SIZE (buf), xvimagesink->xvimage->size));
|
|
|
|
gst_xvimagesink_xvimage_put (xvimagesink, xvimagesink->xvimage);
|
|
|
|
}
|
|
|
|
else /* No image available. Something went wrong during capsnego ! */
|
|
|
|
{
|
|
|
|
gst_buffer_unref (buf);
|
|
|
|
gst_element_error (GST_ELEMENT (xvimagesink), "no image to draw");
|
|
|
|
return;
|
|
|
|
}
|
2003-12-22 01:47:09 +00:00
|
|
|
#if 0
|
2003-11-10 18:22:20 +00:00
|
|
|
}
|
2003-12-22 01:47:09 +00:00
|
|
|
#endif
|
2003-12-14 05:10:28 +00:00
|
|
|
/* set correct time for next buffer */
|
|
|
|
if (!GST_BUFFER_TIMESTAMP_IS_VALID (buf) && xvimagesink->framerate > 0) {
|
|
|
|
xvimagesink->time += GST_SECOND / xvimagesink->framerate;
|
|
|
|
}
|
|
|
|
|
2003-11-10 18:22:20 +00:00
|
|
|
gst_buffer_unref (buf);
|
|
|
|
|
|
|
|
gst_xvimagesink_handle_xevents (xvimagesink, pad);
|
|
|
|
}
|
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
#if 0
|
2003-11-10 18:22:20 +00:00
|
|
|
static GstBuffer*
|
|
|
|
gst_xvimagesink_buffer_new (GstBufferPool *pool,
|
|
|
|
gint64 location, guint size, gpointer user_data)
|
|
|
|
{
|
|
|
|
GstXvImageSink *xvimagesink;
|
|
|
|
GstBuffer *buffer;
|
|
|
|
GstXvImage *xvimage = NULL;
|
|
|
|
gboolean not_found = TRUE;
|
|
|
|
|
|
|
|
xvimagesink = GST_XVIMAGESINK (user_data);
|
|
|
|
|
|
|
|
g_mutex_lock (xvimagesink->pool_lock);
|
|
|
|
|
|
|
|
/* Walking through the pool cleaning unsuable images and searching for a
|
|
|
|
suitable one */
|
|
|
|
while (not_found && xvimagesink->image_pool)
|
|
|
|
{
|
|
|
|
xvimage = xvimagesink->image_pool->data;
|
|
|
|
|
|
|
|
if (xvimage)
|
|
|
|
{
|
|
|
|
/* Removing from the pool */
|
|
|
|
xvimagesink->image_pool = g_slist_delete_link (xvimagesink->image_pool,
|
|
|
|
xvimagesink->image_pool);
|
|
|
|
|
2003-11-19 20:43:49 +00:00
|
|
|
if ( (xvimage->width != GST_VIDEOSINK_WIDTH (xvimagesink)) ||
|
|
|
|
(xvimage->height != GST_VIDEOSINK_HEIGHT (xvimagesink)) )
|
2003-11-10 18:22:20 +00:00
|
|
|
{ /* This image is unusable. Destroying... */
|
|
|
|
gst_xvimagesink_xvimage_destroy (xvimagesink, xvimage);
|
|
|
|
xvimage = NULL;
|
|
|
|
}
|
|
|
|
else /* We found a suitable image */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
g_mutex_unlock (xvimagesink->pool_lock);
|
|
|
|
|
|
|
|
if (!xvimage) /* We found no suitable image in the pool. Creating... */
|
|
|
|
xvimage = gst_xvimagesink_xvimage_new (xvimagesink,
|
2003-11-19 20:43:49 +00:00
|
|
|
GST_VIDEOSINK_WIDTH (xvimagesink),
|
|
|
|
GST_VIDEOSINK_HEIGHT (xvimagesink));
|
2003-11-10 18:22:20 +00:00
|
|
|
|
|
|
|
if (xvimage)
|
|
|
|
{
|
|
|
|
buffer = gst_buffer_new ();
|
|
|
|
GST_BUFFER_POOL_PRIVATE (buffer) = xvimage;
|
|
|
|
GST_BUFFER_DATA (buffer) = xvimage->xvimage->data;
|
|
|
|
GST_BUFFER_SIZE (buffer) = xvimage->size;
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_xvimagesink_buffer_free (GstBufferPool *pool,
|
|
|
|
GstBuffer *buffer, gpointer user_data)
|
|
|
|
{
|
|
|
|
GstXvImageSink *xvimagesink;
|
|
|
|
GstXvImage *xvimage;
|
|
|
|
|
|
|
|
xvimagesink = GST_XVIMAGESINK (user_data);
|
|
|
|
|
|
|
|
xvimage = GST_BUFFER_POOL_PRIVATE (buffer);
|
|
|
|
|
|
|
|
/* If our geometry changed we can't reuse that image. */
|
2003-11-19 20:43:49 +00:00
|
|
|
if ( (xvimage->width != GST_VIDEOSINK_WIDTH (xvimagesink)) ||
|
|
|
|
(xvimage->height != GST_VIDEOSINK_HEIGHT (xvimagesink)) )
|
2003-11-10 18:22:20 +00:00
|
|
|
gst_xvimagesink_xvimage_destroy (xvimagesink, xvimage);
|
|
|
|
else /* In that case we can reuse the image and add it to our image pool. */
|
|
|
|
{
|
|
|
|
g_mutex_lock (xvimagesink->pool_lock);
|
2003-11-19 20:43:49 +00:00
|
|
|
xvimagesink->image_pool = g_slist_prepend (xvimagesink->image_pool,
|
|
|
|
xvimage);
|
2003-11-10 18:22:20 +00:00
|
|
|
g_mutex_unlock (xvimagesink->pool_lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_BUFFER_DATA (buffer) = NULL;
|
|
|
|
|
|
|
|
gst_buffer_default_free (buffer);
|
|
|
|
}
|
2003-12-22 01:47:09 +00:00
|
|
|
#endif
|
2003-11-10 18:22:20 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
gst_xvimagesink_imagepool_clear (GstXvImageSink *xvimagesink)
|
|
|
|
{
|
|
|
|
g_mutex_lock(xvimagesink->pool_lock);
|
|
|
|
|
|
|
|
while (xvimagesink->image_pool)
|
|
|
|
{
|
|
|
|
GstXvImage *xvimage = xvimagesink->image_pool->data;
|
|
|
|
xvimagesink->image_pool = g_slist_delete_link (xvimagesink->image_pool,
|
2003-11-19 20:43:49 +00:00
|
|
|
xvimagesink->image_pool);
|
2003-11-10 18:22:20 +00:00
|
|
|
gst_xvimagesink_xvimage_destroy (xvimagesink, xvimage);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_mutex_unlock(xvimagesink->pool_lock);
|
|
|
|
}
|
|
|
|
|
2003-11-17 16:32:29 +00:00
|
|
|
/* Interfaces stuff */
|
|
|
|
|
|
|
|
static gboolean
|
2003-12-07 12:11:30 +00:00
|
|
|
gst_xvimagesink_interface_supported (GstImplementsInterface *iface, GType type)
|
2003-11-17 16:32:29 +00:00
|
|
|
{
|
|
|
|
g_assert (type == GST_TYPE_NAVIGATION || type == GST_TYPE_X_OVERLAY);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2003-12-07 12:11:30 +00:00
|
|
|
gst_xvimagesink_interface_init (GstImplementsInterfaceClass *klass)
|
2003-11-17 16:32:29 +00:00
|
|
|
{
|
|
|
|
klass->supported = gst_xvimagesink_interface_supported;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2003-11-19 20:43:49 +00:00
|
|
|
gst_xvimagesink_navigation_send_event (GstNavigation *navigation,
|
|
|
|
GstStructure *structure)
|
2003-11-17 16:32:29 +00:00
|
|
|
{
|
|
|
|
GstXvImageSink *xvimagesink = GST_XVIMAGESINK (navigation);
|
|
|
|
GstEvent *event;
|
|
|
|
double x,y;
|
|
|
|
|
|
|
|
event = gst_event_new (GST_EVENT_NAVIGATION);
|
|
|
|
event->event_data.structure.structure = structure;
|
|
|
|
|
|
|
|
/* Converting pointer coordinates to the non scaled geometry */
|
|
|
|
if (gst_structure_get_double (structure, "pointer_x", &x))
|
|
|
|
{
|
2003-11-19 20:43:49 +00:00
|
|
|
x *= GST_VIDEOSINK_WIDTH (xvimagesink);
|
2003-11-17 16:32:29 +00:00
|
|
|
x /= xvimagesink->xwindow->width;
|
|
|
|
gst_structure_set (structure, "pointer_x", G_TYPE_DOUBLE, x, NULL);
|
|
|
|
}
|
|
|
|
if (gst_structure_get_double (structure, "pointer_y", &y))
|
|
|
|
{
|
2003-11-19 20:43:49 +00:00
|
|
|
y *= GST_VIDEOSINK_HEIGHT (xvimagesink);
|
2003-11-17 16:32:29 +00:00
|
|
|
y /= xvimagesink->xwindow->height;
|
|
|
|
gst_structure_set (structure, "pointer_y", G_TYPE_DOUBLE, y, NULL);
|
|
|
|
}
|
|
|
|
|
2003-11-19 20:43:49 +00:00
|
|
|
gst_pad_send_event (gst_pad_get_peer (GST_VIDEOSINK_PAD (xvimagesink)), event);
|
2003-11-17 16:32:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_xvimagesink_navigation_init (GstNavigationInterface *iface)
|
|
|
|
{
|
|
|
|
iface->send_event = gst_xvimagesink_navigation_send_event;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_xvimagesink_set_xwindow_id (GstXOverlay *overlay, XID xwindow_id)
|
|
|
|
{
|
|
|
|
GstXvImageSink *xvimagesink = GST_XVIMAGESINK (overlay);
|
|
|
|
GstXWindow *xwindow = NULL;
|
|
|
|
XWindowAttributes attr;
|
|
|
|
|
|
|
|
g_return_if_fail (xvimagesink != NULL);
|
|
|
|
g_return_if_fail (GST_IS_XVIMAGESINK (xvimagesink));
|
|
|
|
|
|
|
|
if (!xvimagesink->xcontext)
|
|
|
|
{
|
|
|
|
xvimagesink->xcontext = gst_xvimagesink_xcontext_get (xvimagesink);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( (xvimagesink->xwindow) && (xvimagesink->xvimage) )
|
|
|
|
{ /* If we are replacing a window we destroy pictures and window as they
|
|
|
|
are associated */
|
|
|
|
gst_xvimagesink_xvimage_destroy (xvimagesink, xvimagesink->xvimage);
|
|
|
|
gst_xvimagesink_imagepool_clear (xvimagesink);
|
|
|
|
gst_xvimagesink_xwindow_destroy (xvimagesink, xvimagesink->xwindow);
|
|
|
|
}
|
|
|
|
|
|
|
|
xwindow = g_new0 (GstXWindow, 1);
|
|
|
|
|
|
|
|
xwindow->win = xwindow_id;
|
|
|
|
|
|
|
|
/* We get window geometry, set the event we want to receive, and create a GC */
|
|
|
|
g_mutex_lock (xvimagesink->x_lock);
|
|
|
|
XGetWindowAttributes (xvimagesink->xcontext->disp, xwindow->win, &attr);
|
|
|
|
xwindow->width = attr.width;
|
|
|
|
xwindow->height = attr.height;
|
|
|
|
xwindow->internal = FALSE;
|
|
|
|
XSelectInput (xvimagesink->xcontext->disp, xwindow->win, ExposureMask |
|
|
|
|
StructureNotifyMask | PointerMotionMask | KeyPressMask |
|
2003-11-19 20:43:49 +00:00
|
|
|
KeyReleaseMask);
|
2003-11-17 16:32:29 +00:00
|
|
|
|
|
|
|
xwindow->gc = XCreateGC (xvimagesink->xcontext->disp,
|
|
|
|
xwindow->win, 0, NULL);
|
|
|
|
g_mutex_unlock (xvimagesink->x_lock);
|
|
|
|
|
|
|
|
xvimagesink->xwindow = xwindow;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_xvimagesink_xoverlay_init (GstXOverlayClass *iface)
|
|
|
|
{
|
|
|
|
iface->set_xwindow_id = gst_xvimagesink_set_xwindow_id;
|
|
|
|
}
|
|
|
|
|
2003-11-10 18:22:20 +00:00
|
|
|
/* =========================================== */
|
|
|
|
/* */
|
|
|
|
/* Init & Class init */
|
|
|
|
/* */
|
|
|
|
/* =========================================== */
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_xvimagesink_dispose (GObject *object)
|
|
|
|
{
|
|
|
|
GstXvImageSink *xvimagesink;
|
|
|
|
|
|
|
|
xvimagesink = GST_XVIMAGESINK (object);
|
|
|
|
|
|
|
|
if (xvimagesink->xvimage)
|
|
|
|
{
|
|
|
|
gst_xvimagesink_xvimage_destroy (xvimagesink, xvimagesink->xvimage);
|
|
|
|
xvimagesink->xvimage = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (xvimagesink->image_pool)
|
|
|
|
gst_xvimagesink_imagepool_clear (xvimagesink);
|
|
|
|
|
|
|
|
if (xvimagesink->xwindow)
|
|
|
|
{
|
|
|
|
gst_xvimagesink_xwindow_destroy (xvimagesink, xvimagesink->xwindow);
|
|
|
|
xvimagesink->xwindow = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (xvimagesink->xcontext)
|
|
|
|
gst_xvimagesink_xcontext_clear (xvimagesink);
|
|
|
|
|
|
|
|
g_mutex_free (xvimagesink->x_lock);
|
|
|
|
g_mutex_free (xvimagesink->pool_lock);
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (parent_class)->dispose (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_xvimagesink_init (GstXvImageSink *xvimagesink)
|
|
|
|
{
|
2003-11-19 20:43:49 +00:00
|
|
|
GST_VIDEOSINK_PAD (xvimagesink) = gst_pad_new_from_template (
|
2003-12-22 01:47:09 +00:00
|
|
|
gst_static_pad_template_get (&gst_xvimagesink_sink_template_factory),
|
|
|
|
"sink");
|
2003-11-19 20:43:49 +00:00
|
|
|
|
|
|
|
gst_element_add_pad (GST_ELEMENT (xvimagesink),
|
|
|
|
GST_VIDEOSINK_PAD (xvimagesink));
|
|
|
|
|
|
|
|
gst_pad_set_chain_function (GST_VIDEOSINK_PAD (xvimagesink),
|
|
|
|
gst_xvimagesink_chain);
|
|
|
|
gst_pad_set_link_function (GST_VIDEOSINK_PAD (xvimagesink),
|
|
|
|
gst_xvimagesink_sinkconnect);
|
|
|
|
gst_pad_set_getcaps_function (GST_VIDEOSINK_PAD (xvimagesink),
|
|
|
|
gst_xvimagesink_getcaps);
|
2004-01-02 10:04:34 +00:00
|
|
|
gst_pad_set_fixate_function (GST_VIDEOSINK_PAD (xvimagesink),
|
|
|
|
gst_xvimagesink_fixate);
|
2003-11-10 18:22:20 +00:00
|
|
|
|
|
|
|
xvimagesink->xcontext = NULL;
|
|
|
|
xvimagesink->xwindow = NULL;
|
|
|
|
xvimagesink->xvimage = NULL;
|
|
|
|
|
2003-11-12 11:02:31 +00:00
|
|
|
xvimagesink->framerate = 0;
|
|
|
|
|
2003-11-10 18:22:20 +00:00
|
|
|
xvimagesink->x_lock = g_mutex_new ();
|
|
|
|
|
|
|
|
xvimagesink->pixel_width = xvimagesink->pixel_height = 1;
|
|
|
|
|
|
|
|
xvimagesink->image_pool = NULL;
|
|
|
|
xvimagesink->pool_lock = g_mutex_new ();
|
|
|
|
|
|
|
|
GST_FLAG_SET(xvimagesink, GST_ELEMENT_THREAD_SUGGESTED);
|
|
|
|
GST_FLAG_SET(xvimagesink, GST_ELEMENT_EVENT_AWARE);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_xvimagesink_base_init (gpointer g_class)
|
|
|
|
{
|
|
|
|
GstElementClass *element_class = GST_ELEMENT_CLASS (g_class);
|
|
|
|
|
|
|
|
gst_element_class_set_details (element_class, &gst_xvimagesink_details);
|
|
|
|
|
|
|
|
gst_element_class_add_pad_template (element_class,
|
2003-12-22 01:47:09 +00:00
|
|
|
gst_static_pad_template_get (&gst_xvimagesink_sink_template_factory));
|
2003-11-10 18:22:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_xvimagesink_class_init (GstXvImageSinkClass *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *gobject_class;
|
|
|
|
GstElementClass *gstelement_class;
|
|
|
|
|
|
|
|
gobject_class = (GObjectClass *) klass;
|
|
|
|
gstelement_class = (GstElementClass *) klass;
|
|
|
|
|
2003-11-19 20:43:49 +00:00
|
|
|
parent_class = g_type_class_ref (GST_TYPE_VIDEOSINK);
|
2003-11-10 18:22:20 +00:00
|
|
|
|
|
|
|
gobject_class->dispose = gst_xvimagesink_dispose;
|
|
|
|
|
|
|
|
gstelement_class->change_state = gst_xvimagesink_change_state;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ============================================================= */
|
|
|
|
/* */
|
|
|
|
/* Public Methods */
|
|
|
|
/* */
|
|
|
|
/* ============================================================= */
|
|
|
|
|
|
|
|
/* =========================================== */
|
|
|
|
/* */
|
|
|
|
/* Object typing & Creation */
|
|
|
|
/* */
|
|
|
|
/* =========================================== */
|
|
|
|
|
|
|
|
GType
|
|
|
|
gst_xvimagesink_get_type (void)
|
|
|
|
{
|
|
|
|
static GType xvimagesink_type = 0;
|
|
|
|
|
|
|
|
if (!xvimagesink_type)
|
|
|
|
{
|
|
|
|
static const GTypeInfo xvimagesink_info = {
|
|
|
|
sizeof(GstXvImageSinkClass),
|
|
|
|
gst_xvimagesink_base_init,
|
|
|
|
NULL,
|
|
|
|
(GClassInitFunc) gst_xvimagesink_class_init,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
sizeof(GstXvImageSink),
|
|
|
|
0,
|
|
|
|
(GInstanceInitFunc) gst_xvimagesink_init,
|
|
|
|
};
|
|
|
|
static const GInterfaceInfo iface_info = {
|
|
|
|
(GInterfaceInitFunc) gst_xvimagesink_interface_init,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
static const GInterfaceInfo navigation_info = {
|
|
|
|
(GInterfaceInitFunc) gst_xvimagesink_navigation_init,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
};
|
2003-11-17 16:32:29 +00:00
|
|
|
static const GInterfaceInfo overlay_info = {
|
2003-11-10 18:22:20 +00:00
|
|
|
(GInterfaceInitFunc) gst_xvimagesink_xoverlay_init,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
2003-11-17 16:32:29 +00:00
|
|
|
};
|
2003-11-10 18:22:20 +00:00
|
|
|
|
2003-11-19 20:43:49 +00:00
|
|
|
xvimagesink_type = g_type_register_static (GST_TYPE_VIDEOSINK,
|
2003-11-10 18:22:20 +00:00
|
|
|
"GstXvImageSink",
|
|
|
|
&xvimagesink_info, 0);
|
|
|
|
|
2003-12-07 12:11:30 +00:00
|
|
|
g_type_add_interface_static (xvimagesink_type, GST_TYPE_IMPLEMENTS_INTERFACE,
|
2003-11-17 16:32:29 +00:00
|
|
|
&iface_info);
|
2003-11-10 18:22:20 +00:00
|
|
|
g_type_add_interface_static (xvimagesink_type, GST_TYPE_NAVIGATION,
|
2003-11-17 16:32:29 +00:00
|
|
|
&navigation_info);
|
|
|
|
g_type_add_interface_static (xvimagesink_type, GST_TYPE_X_OVERLAY,
|
|
|
|
&overlay_info);
|
2003-11-10 18:22:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return xvimagesink_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
plugin_init (GstPlugin *plugin)
|
|
|
|
{
|
2003-11-19 20:43:49 +00:00
|
|
|
/* Loading the library containing GstVideoSink, our parent object */
|
|
|
|
if (!gst_library_load ("gstvideo"))
|
|
|
|
return FALSE;
|
|
|
|
|
2003-11-10 18:22:20 +00:00
|
|
|
if (!gst_element_register (plugin, "xvimagesink",
|
|
|
|
GST_RANK_PRIMARY, GST_TYPE_XVIMAGESINK))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_PLUGIN_DEFINE (
|
|
|
|
GST_VERSION_MAJOR,
|
|
|
|
GST_VERSION_MINOR,
|
|
|
|
"xvimagesink",
|
|
|
|
"XFree86 video output plugin using Xv extension",
|
|
|
|
plugin_init,
|
|
|
|
VERSION,
|
|
|
|
GST_LICENSE,
|
|
|
|
GST_PACKAGE,
|
|
|
|
GST_ORIGIN)
|