2002-09-26 12:20:12 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) <1999> Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
* Library <2002> Ronald Bultje <rbultje@ronald.bitfreak.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.
|
|
|
|
*/
|
|
|
|
|
2003-10-31 20:03:29 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2002-09-26 12:20:12 +00:00
|
|
|
#include "video.h"
|
|
|
|
|
|
|
|
/* This is simply a convenience function, nothing more or less */
|
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
gdouble
|
2002-09-26 12:20:12 +00:00
|
|
|
gst_video_frame_rate (GstPad *pad)
|
|
|
|
{
|
2003-12-22 01:47:09 +00:00
|
|
|
gdouble fps = 0.;
|
2003-12-27 19:37:17 +00:00
|
|
|
const GstCaps *caps = NULL;
|
2003-12-22 01:47:09 +00:00
|
|
|
GstStructure *structure;
|
2003-07-06 20:49:52 +00:00
|
|
|
|
|
|
|
/* get pad caps */
|
|
|
|
caps = GST_PAD_CAPS (pad);
|
|
|
|
if (caps == NULL) {
|
|
|
|
g_warning ("gstvideo: failed to get caps of pad %s:%s",
|
|
|
|
GST_ELEMENT_NAME (gst_pad_get_parent (pad)),
|
|
|
|
GST_PAD_NAME(pad));
|
|
|
|
return 0.;
|
|
|
|
}
|
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
structure = gst_caps_get_structure (caps, 0);
|
|
|
|
if (!gst_structure_get_double (structure, "framerate", &fps)){
|
2003-07-06 20:49:52 +00:00
|
|
|
g_warning ("gstvideo: failed to get framerate property of pad %s:%s",
|
|
|
|
GST_ELEMENT_NAME (gst_pad_get_parent (pad)),
|
|
|
|
GST_PAD_NAME (pad));
|
2002-09-26 12:20:12 +00:00
|
|
|
return 0.;
|
|
|
|
}
|
|
|
|
|
2003-07-06 20:49:52 +00:00
|
|
|
GST_DEBUG ("Framerate request on pad %s:%s: %f",
|
|
|
|
GST_ELEMENT_NAME (gst_pad_get_parent (pad)),
|
|
|
|
GST_PAD_NAME(pad), fps);
|
2002-09-26 12:20:12 +00:00
|
|
|
|
|
|
|
return fps;
|
|
|
|
}
|
|
|
|
|
2003-01-30 20:47:43 +00:00
|
|
|
gboolean
|
|
|
|
gst_video_get_size (GstPad *pad,
|
|
|
|
gint *width,
|
|
|
|
gint *height)
|
|
|
|
{
|
2003-12-27 19:37:17 +00:00
|
|
|
const GstCaps *caps = NULL;
|
2003-12-22 01:47:09 +00:00
|
|
|
GstStructure *structure;
|
|
|
|
gboolean ret;
|
2003-01-30 20:47:43 +00:00
|
|
|
|
2003-07-06 20:49:52 +00:00
|
|
|
g_return_val_if_fail (pad != NULL, FALSE);
|
2003-12-22 01:47:09 +00:00
|
|
|
g_return_val_if_fail (width != NULL, FALSE);
|
|
|
|
g_return_val_if_fail (height != NULL, FALSE);
|
2003-01-30 20:47:43 +00:00
|
|
|
|
2003-07-06 20:49:52 +00:00
|
|
|
caps = GST_PAD_CAPS (pad);
|
|
|
|
|
|
|
|
if (caps == NULL) {
|
|
|
|
g_warning ("gstvideo: failed to get caps of pad %s:%s",
|
|
|
|
GST_ELEMENT_NAME (gst_pad_get_parent (pad)),
|
|
|
|
GST_PAD_NAME(pad));
|
2003-01-30 20:47:43 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2003-07-06 20:49:52 +00:00
|
|
|
|
2003-12-22 01:47:09 +00:00
|
|
|
structure = gst_caps_get_structure (caps, 0);
|
|
|
|
ret = gst_structure_get_int (structure, "width", width);
|
|
|
|
ret &= gst_structure_get_int (structure, "height", height);
|
|
|
|
|
|
|
|
if (!ret) {
|
2003-07-06 20:49:52 +00:00
|
|
|
g_warning ("gstvideo: failed to get size properties on pad %s:%s",
|
|
|
|
GST_ELEMENT_NAME (gst_pad_get_parent (pad)),
|
|
|
|
GST_PAD_NAME(pad));
|
2003-01-30 20:47:43 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2003-06-29 19:46:13 +00:00
|
|
|
GST_DEBUG ("size request on pad %s:%s: %dx%d",
|
2003-07-06 20:49:52 +00:00
|
|
|
GST_ELEMENT_NAME (gst_pad_get_parent (pad)),
|
|
|
|
GST_PAD_NAME (pad),
|
|
|
|
width ? *width : -1,
|
|
|
|
height ? *height : -1);
|
2003-01-30 20:47:43 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2002-09-26 12:20:12 +00:00
|
|
|
static gboolean
|
2003-10-31 20:03:29 +00:00
|
|
|
plugin_init (GstPlugin *plugin)
|
2002-09-26 12:20:12 +00:00
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2003-10-31 20:03:29 +00:00
|
|
|
GST_PLUGIN_DEFINE (
|
2002-09-26 12:20:12 +00:00
|
|
|
GST_VERSION_MAJOR,
|
|
|
|
GST_VERSION_MINOR,
|
|
|
|
"gstvideo",
|
2003-10-31 20:03:29 +00:00
|
|
|
"Convenience routines for video plugins",
|
|
|
|
plugin_init,
|
|
|
|
VERSION,
|
|
|
|
GST_LICENSE,
|
|
|
|
GST_PACKAGE,
|
|
|
|
GST_ORIGIN
|
|
|
|
)
|