Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
aa576342
Commit
aa576342
authored
Sep 23, 2014
by
Alexander Smorkalov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed compatibility with GStreamer 1.x.
parent
a419b643
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
13 deletions
+11
-13
cap_gstreamer.cpp
modules/videoio/src/cap_gstreamer.cpp
+11
-13
No files found.
modules/videoio/src/cap_gstreamer.cpp
View file @
aa576342
...
...
@@ -1220,12 +1220,12 @@ bool CvVideoWriter_GStreamer::open( const char * filename, int fourcc,
GstEncodingVideoProfile
*
videoprofile
=
NULL
;
#endif
bool
done
=
false
;
GstElement
*
item
=
NULL
;
GstIterator
*
it
=
NULL
;
char
*
name
=
NULL
;
GstElement
*
splitter
;
GstElement
*
combiner
;
gboolean
done
=
FALSE
;
GstElement
*
element
=
NULL
;
gchar
*
name
=
NULL
;
GstElement
*
splitter
=
NULL
;
GstElement
*
combiner
=
NULL
;
// we first try to construct a pipeline from the given string.
// if that fails, we assume it is an ordinary filename
...
...
@@ -1245,10 +1245,6 @@ bool CvVideoWriter_GStreamer::open( const char * filename, int fourcc,
}
#else
it
=
gst_bin_iterate_sources
(
GST_BIN
(
encodebin
));
gboolean
done
=
FALSE
;
GstElement
*
element
=
NULL
;
gchar
*
name
=
NULL
;
GValue
value
=
G_VALUE_INIT
;
while
(
!
done
)
{
...
...
@@ -1399,19 +1395,20 @@ bool CvVideoWriter_GStreamer::open( const char * filename, int fourcc,
}
}
#if GST_VERSION_MAJOR == 0
// HACK: remove streamsplitter and streamcombiner from
// encodebin pipeline to prevent early EOF event handling
// We always fetch BGR or gray-scale frames, so combiner->spliter
// endge in graph is useless.
it
=
gst_bin_iterate_recurse
(
GST_BIN
(
encodebin
));
while
(
!
done
)
{
switch
(
gst_iterator_next
(
it
,
(
void
**
)
&
item
))
{
switch
(
gst_iterator_next
(
it
,
(
void
**
)
&
element
))
{
case
GST_ITERATOR_OK
:
name
=
gst_element_get_name
(
item
);
name
=
gst_element_get_name
(
element
);
if
(
strstr
(
name
,
"streamsplitter"
))
splitter
=
item
;
splitter
=
element
;
else
if
(
strstr
(
name
,
"streamcombiner"
))
combiner
=
item
;
combiner
=
element
;
break
;
case
GST_ITERATOR_RESYNC
:
gst_iterator_resync
(
it
);
...
...
@@ -1453,6 +1450,7 @@ bool CvVideoWriter_GStreamer::open( const char * filename, int fourcc,
gst_pad_link
(
sinkPeer
,
srcPeer
);
}
#endif
stateret
=
gst_element_set_state
(
GST_ELEMENT
(
pipeline
),
GST_STATE_PLAYING
);
if
(
stateret
==
GST_STATE_CHANGE_FAILURE
)
{
...
...
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