summaryrefslogtreecommitdiffstats
path: root/gst/mxf/mxfup.c
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2009-03-16 17:22:22 +0100
committerSebastian Dröge <sebastian.droege@collabora.co.uk>2009-03-21 10:19:49 +0100
commitc95ba980b2511c9bfc95ed2970c3d8b817e57aeb (patch)
treecc69b9d9581d04f5676dc317fbfb4ed843b2d42c /gst/mxf/mxfup.c
parenta31498d8d48a6cb5a4ee38253c825391ff39bd7f (diff)
downloadgst-plugins-bad-c95ba980b2511c9bfc95ed2970c3d8b817e57aeb.tar.gz
gst-plugins-bad-c95ba980b2511c9bfc95ed2970c3d8b817e57aeb.tar.bz2
gst-plugins-bad-c95ba980b2511c9bfc95ed2970c3d8b817e57aeb.zip
mxfdemux: Use correct width/height for stride conversions
Diffstat (limited to 'gst/mxf/mxfup.c')
-rw-r--r--gst/mxf/mxfup.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/gst/mxf/mxfup.c b/gst/mxf/mxfup.c
index 35ad6221..3770c7da 100644
--- a/gst/mxf/mxfup.c
+++ b/gst/mxf/mxfup.c
@@ -205,14 +205,11 @@ mxf_up_rgba_create_caps (MXFMetadataTimelineTrack * track,
if (caps) {
MXFUPMappingData *data = g_new0 (MXFUPMappingData, 1);
- GstStructure *s;
mxf_metadata_generic_picture_essence_descriptor_set_caps (&d->parent, caps);
- s = gst_caps_get_structure (caps, 0);
- gst_structure_get_int (s, "width", &data->width);
- gst_structure_get_int (s, "height", &data->height);
-
+ data->width = d->parent.stored_width;
+ data->height = d->parent.stored_height;
data->fourcc = fourcc;
data->bpp = bpp;
data->image_start_offset =