summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2011-12-11 18:40:31 +0000
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2011-12-11 18:40:31 +0000
commit8aebe194aa6d9bb01aeb53538c4ada54d3c19f1d (patch)
tree854643fb31837417b0a6a351206f4295ddcc912c
parent9c1095f474a9b17ead0d092fbf760b22b391bd5a (diff)
gdkpixbufsink: fix inverted pixel-aspect-ratio
Spotted by Mike Morrison. https://bugzilla.gnome.org/show_bug.cgi?id=665882
-rw-r--r--ext/gdk_pixbuf/gstgdkpixbufsink.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/gdk_pixbuf/gstgdkpixbufsink.c b/ext/gdk_pixbuf/gstgdkpixbufsink.c
index 8a9677a2c..2c2714ef1 100644
--- a/ext/gdk_pixbuf/gstgdkpixbufsink.c
+++ b/ext/gdk_pixbuf/gstgdkpixbufsink.c
@@ -271,7 +271,7 @@ gst_gdk_pixbuf_sink_set_caps (GstBaseSink * basesink, GstCaps * caps)
GST_INFO_OBJECT (sink, "format : %d", fmt);
GST_INFO_OBJECT (sink, "width x height : %d x %d", w, h);
- GST_INFO_OBJECT (sink, "pixel-aspect-ratio : %d/%d", par_d, par_n);
+ GST_INFO_OBJECT (sink, "pixel-aspect-ratio : %d/%d", par_n, par_d);
return TRUE;
}
@@ -344,7 +344,7 @@ gst_gdk_pixbuf_sink_handle_buffer (GstBaseSink * basesink, GstBuffer * buf,
* The structure will take its own ref to the pixbuf. */
s = gst_structure_new (msg_name,
"pixbuf", GDK_TYPE_PIXBUF, pixbuf,
- "pixel-aspect-ratio", GST_TYPE_FRACTION, sink->par_d, sink->par_n,
+ "pixel-aspect-ratio", GST_TYPE_FRACTION, sink->par_n, sink->par_d,
NULL);
msg = gst_message_new_element (GST_OBJECT_CAST (sink), s);