Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gst-plugins-base
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Sebastian Dröge
gst-plugins-base
Commits
7bdcb12b
Commit
7bdcb12b
authored
Aug 08, 2012
by
Sebastian Dröge
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gst: Set alignment at the correct place of GstAllocationParams
parent
15c712c7
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
gst-libs/gst/video/gstvideoencoder.c
gst-libs/gst/video/gstvideoencoder.c
+1
-1
gst-libs/gst/video/gstvideofilter.c
gst-libs/gst/video/gstvideofilter.c
+1
-1
sys/ximage/ximagesink.c
sys/ximage/ximagesink.c
+1
-1
sys/xvimage/xvimagesink.c
sys/xvimage/xvimagesink.c
+1
-1
No files found.
gst-libs/gst/video/gstvideoencoder.c
View file @
7bdcb12b
...
...
@@ -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
,
&
params
);
...
...
gst-libs/gst/video/gstvideofilter.c
View file @
7bdcb12b
...
...
@@ -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
,
&
params
);
...
...
sys/ximage/ximagesink.c
View file @
7bdcb12b
...
...
@@ -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
);
...
...
sys/xvimage/xvimagesink.c
View file @
7bdcb12b
...
...
@@ -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
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment