From 7bdcb12b41780694019a4e65b9ac1addf2afabc8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sebastian=20Dr=C3=B6ge?= Date: Wed, 8 Aug 2012 16:12:20 +0200 Subject: [PATCH] gst: Set alignment at the correct place of GstAllocationParams --- gst-libs/gst/video/gstvideoencoder.c | 2 +- gst-libs/gst/video/gstvideofilter.c | 2 +- sys/ximage/ximagesink.c | 2 +- sys/xvimage/xvimagesink.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/gst-libs/gst/video/gstvideoencoder.c b/gst-libs/gst/video/gstvideoencoder.c index 40d0d47..5b96569 100644 --- a/gst-libs/gst/video/gstvideoencoder.c +++ b/gst-libs/gst/video/gstvideoencoder.c @@ -765,7 +765,7 @@ gst_video_encoder_propose_allocation_default (GstVideoEncoder * encoder, if (gst_query_get_n_allocation_pools (query) == 0) { GstStructure *structure; GstAllocator *allocator = NULL; - GstAllocationParams params = { 0, 0, 0, 15, }; + GstAllocationParams params = { 0, 15, 0, 0 }; if (gst_query_get_n_allocation_params (query) > 0) gst_query_parse_nth_allocation_param (query, 0, &allocator, ¶ms); diff --git a/gst-libs/gst/video/gstvideofilter.c b/gst-libs/gst/video/gstvideofilter.c index a29a58b..017b0ca 100644 --- a/gst-libs/gst/video/gstvideofilter.c +++ b/gst-libs/gst/video/gstvideofilter.c @@ -82,7 +82,7 @@ gst_video_filter_propose_allocation (GstBaseTransform * trans, if (gst_query_get_n_allocation_pools (query) == 0) { GstStructure *structure; GstAllocator *allocator = NULL; - GstAllocationParams params = { 0, 0, 0, 15, }; + GstAllocationParams params = { 0, 15, 0, 0, }; if (gst_query_get_n_allocation_params (query) > 0) gst_query_parse_nth_allocation_param (query, 0, &allocator, ¶ms); diff --git a/sys/ximage/ximagesink.c b/sys/ximage/ximagesink.c index 9a70ac7..6fa3a35 100644 --- a/sys/ximage/ximagesink.c +++ b/sys/ximage/ximagesink.c @@ -1079,7 +1079,7 @@ gst_ximagesink_setcaps (GstBaseSink * bsink, GstCaps * caps) GstBufferPool *newpool, *oldpool; const GValue *par; gint size; - static GstAllocationParams params = { 0, 0, 0, 15, }; + static GstAllocationParams params = { 0, 15, 0, 0, }; ximagesink = GST_XIMAGESINK (bsink); diff --git a/sys/xvimage/xvimagesink.c b/sys/xvimage/xvimagesink.c index 1c63c45..e631b2a 100644 --- a/sys/xvimage/xvimagesink.c +++ b/sys/xvimage/xvimagesink.c @@ -1555,7 +1555,7 @@ gst_xvimagesink_setcaps (GstBaseSink * bsink, GstCaps * caps) gint display_par_n, display_par_d; /* display's PAR */ guint num, den; gint size; - static GstAllocationParams params = { 0, 0, 0, 15, }; + static GstAllocationParams params = { 0, 15, 0, 0, }; xvimagesink = GST_XVIMAGESINK (bsink); -- 2.7.4