sync xvimagesink with ximagesink

Original commit message from CVS:
sync xvimagesink with ximagesink
This commit is contained in:
Thomas Vander Stichele 2004-08-02 10:04:08 +00:00
parent 6cdad34fb0
commit 89f9b482c8
3 changed files with 51 additions and 14 deletions

View file

@ -1,3 +1,14 @@
2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org>
* sys/xvimage/xvimagesink.c:
(gst_xvimagesink_calculate_pixel_aspect_ratio),
(gst_xvimagesink_xcontext_clear), (gst_xvimagesink_sink_link),
(gst_xvimagesink_change_state), (gst_xvimagesink_buffer_alloc),
(gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
(gst_xvimagesink_init), (gst_xvimagesink_class_init):
* sys/xvimage/xvimagesink.h:
apply similar PAR fixes as to ximagesink
2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org> 2004-08-02 Thomas Vander Stichele <thomas at apestaart dot org>
patch from: Benjamin Otte patch from: Benjamin Otte

View file

@ -840,6 +840,11 @@ gst_xvimagesink_calculate_pixel_aspect_ratio (GstXContext * xcontext)
* which is the "physical" w/h divided by the w/h in pixels of the display */ * which is the "physical" w/h divided by the w/h in pixels of the display */
ratio = xcontext->widthmm * xcontext->height ratio = xcontext->widthmm * xcontext->height
/ (xcontext->heightmm * xcontext->width); / (xcontext->heightmm * xcontext->width);
/* DirectFB's X in 720x576 reports the physical dimensions wrong, so
* override here */
if (xcontext->width == 720 && xcontext->height == 576) {
ratio = 4.0 * 576 / (3.0 * 720);
}
GST_DEBUG ("calculated pixel aspect ratio: %f", ratio); GST_DEBUG ("calculated pixel aspect ratio: %f", ratio);
/* now find the one from par[][2] with the lowest delta to the real one */ /* now find the one from par[][2] with the lowest delta to the real one */
delta = DELTA (0); delta = DELTA (0);
@ -857,8 +862,13 @@ gst_xvimagesink_calculate_pixel_aspect_ratio (GstXContext * xcontext)
GST_DEBUG ("Decided on index %d (%d/%d)", index, GST_DEBUG ("Decided on index %d (%d/%d)", index,
par[index][0], par[index][1]); par[index][0], par[index][1]);
g_value_init (&xcontext->par, GST_TYPE_FRACTION); g_free (xcontext->par);
gst_value_set_fraction (&xcontext->par, par[index][0], par[index][1]); xcontext->par = g_new0 (GValue, 1);
g_value_init (xcontext->par, GST_TYPE_FRACTION);
gst_value_set_fraction (xcontext->par, par[index][0], par[index][1]);
GST_DEBUG ("set xcontext PAR to %d/%d",
gst_value_get_fraction_numerator (xcontext->par),
gst_value_get_fraction_denominator (xcontext->par));
} }
/* This function gets the X Display and global info about it. Everything is /* This function gets the X Display and global info about it. Everything is
@ -1058,6 +1068,7 @@ gst_xvimagesink_xcontext_clear (GstXvImageSink * xvimagesink)
g_list_free (xvimagesink->xcontext->channels_list); g_list_free (xvimagesink->xcontext->channels_list);
gst_caps_free (xvimagesink->xcontext->caps); gst_caps_free (xvimagesink->xcontext->caps);
g_free (xvimagesink->xcontext->par);
g_mutex_lock (xvimagesink->x_lock); g_mutex_lock (xvimagesink->x_lock);
@ -1212,8 +1223,13 @@ gst_xvimagesink_sink_link (GstPad * pad, const GstCaps * caps)
video_par_d = 1; video_par_d = 1;
} }
/* get display's PAR */ /* get display's PAR */
display_par_n = gst_value_get_fraction_numerator (&xvimagesink->par); if (xvimagesink->par) {
display_par_d = gst_value_get_fraction_denominator (&xvimagesink->par); display_par_n = gst_value_get_fraction_numerator (xvimagesink->par);
display_par_d = gst_value_get_fraction_denominator (xvimagesink->par);
} else {
display_par_n = 1;
display_par_d = 1;
}
gst_value_set_fraction (&display_ratio, gst_value_set_fraction (&display_ratio,
video_width * video_par_n * display_par_d, video_width * video_par_n * display_par_d,
@ -1296,6 +1312,12 @@ gst_xvimagesink_change_state (GstElement * element)
if (!xvimagesink->xcontext && if (!xvimagesink->xcontext &&
!(xvimagesink->xcontext = gst_xvimagesink_xcontext_get (xvimagesink))) !(xvimagesink->xcontext = gst_xvimagesink_xcontext_get (xvimagesink)))
return GST_STATE_FAILURE; return GST_STATE_FAILURE;
/* update object's par with calculated one if not set yet */
if (!xvimagesink->par) {
xvimagesink->par = g_new0 (GValue, 1);
gst_value_init_and_copy (xvimagesink->par, xvimagesink->xcontext->par);
GST_DEBUG_OBJECT (xvimagesink, "set calculated PAR on object's PAR");
}
/* call XSynchronize with the current value of synchronous */ /* call XSynchronize with the current value of synchronous */
GST_DEBUG_OBJECT (xvimagesink, "XSynchronize called with %s", GST_DEBUG_OBJECT (xvimagesink, "XSynchronize called with %s",
xvimagesink->synchronous ? "TRUE" : "FALSE"); xvimagesink->synchronous ? "TRUE" : "FALSE");
@ -1445,7 +1467,7 @@ gst_xvimagesink_buffer_alloc (GstPad * pad, guint64 offset, guint size)
g_mutex_lock (xvimagesink->pool_lock); g_mutex_lock (xvimagesink->pool_lock);
/* Walking through the pool cleaning unsuable images and searching for a /* Walking through the pool cleaning unusable images and searching for a
suitable one */ suitable one */
while (not_found && xvimagesink->image_pool) { while (not_found && xvimagesink->image_pool) {
xvimage = xvimagesink->image_pool->data; xvimage = xvimagesink->image_pool->data;
@ -1783,11 +1805,16 @@ gst_xvimagesink_set_property (GObject * object, guint prop_id,
} }
break; break;
case ARG_PIXEL_ASPECT_RATIO: case ARG_PIXEL_ASPECT_RATIO:
if (!g_value_transform (value, &xvimagesink->par)) g_free (xvimagesink->par);
xvimagesink->par = g_new0 (GValue, 1);
g_value_init (xvimagesink->par, GST_TYPE_FRACTION);
if (!g_value_transform (value, xvimagesink->par)) {
g_warning ("Could not transform string to aspect ratio"); g_warning ("Could not transform string to aspect ratio");
gst_value_set_fraction (xvimagesink->par, 1, 1);
}
GST_DEBUG_OBJECT (xvimagesink, "set PAR to %d/%d", GST_DEBUG_OBJECT (xvimagesink, "set PAR to %d/%d",
gst_value_get_fraction_numerator (&xvimagesink->par), gst_value_get_fraction_numerator (xvimagesink->par),
gst_value_get_fraction_denominator (&xvimagesink->par)); gst_value_get_fraction_denominator (xvimagesink->par));
break; break;
default: default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
@ -1825,7 +1852,8 @@ gst_xvimagesink_get_property (GObject * object, guint prop_id,
g_value_set_boolean (value, xvimagesink->synchronous); g_value_set_boolean (value, xvimagesink->synchronous);
break; break;
case ARG_PIXEL_ASPECT_RATIO: case ARG_PIXEL_ASPECT_RATIO:
g_value_transform (&xvimagesink->par, value); if (xvimagesink->par)
g_value_transform (xvimagesink->par, value);
break; break;
default: default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
@ -1889,13 +1917,11 @@ gst_xvimagesink_init (GstXvImageSink * xvimagesink)
xvimagesink->x_lock = g_mutex_new (); xvimagesink->x_lock = g_mutex_new ();
g_value_init (&xvimagesink->par, GST_TYPE_FRACTION);
gst_value_set_fraction (&xvimagesink->par, 1, 1);
xvimagesink->image_pool = NULL; xvimagesink->image_pool = NULL;
xvimagesink->pool_lock = g_mutex_new (); xvimagesink->pool_lock = g_mutex_new ();
xvimagesink->synchronous = FALSE; xvimagesink->synchronous = FALSE;
xvimagesink->par = NULL;
GST_FLAG_SET (xvimagesink, GST_ELEMENT_THREAD_SUGGESTED); GST_FLAG_SET (xvimagesink, GST_ELEMENT_THREAD_SUGGESTED);
GST_FLAG_SET (xvimagesink, GST_ELEMENT_EVENT_AWARE); GST_FLAG_SET (xvimagesink, GST_ELEMENT_EVENT_AWARE);

View file

@ -81,7 +81,7 @@ struct _GstXContext {
gint width, height; gint width, height;
gint widthmm, heightmm; gint widthmm, heightmm;
GValue par; /* calculated pixel aspect ratio */ GValue *par; /* calculated pixel aspect ratio */
gboolean use_xshm; gboolean use_xshm;
@ -145,7 +145,7 @@ struct _GstXvImageSink {
guint video_width, video_height; /* size of incoming video; guint video_width, video_height; /* size of incoming video;
* used as the size for XvImage */ * used as the size for XvImage */
GValue par; /* object-set pixel aspect ratio */ GValue *par; /* object-set pixel aspect ratio */
GstClockTime time; GstClockTime time;