Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
George Kiagiadakis
gst-plugins-base
Commits
22c212d3
Commit
22c212d3
authored
Jun 03, 2002
by
Wim Taymans
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix the compile error
Original commit message from CVS: Fix the compile error
parent
4f4a4829
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
examples/seeking/seek.c
examples/seeking/seek.c
+4
-4
tests/examples/seek/seek.c
tests/examples/seek/seek.c
+4
-4
No files found.
examples/seeking/seek.c
View file @
22c212d3
...
...
@@ -93,10 +93,10 @@ make_mp3_pipeline (const gchar *location)
pipeline
=
gst_pipeline_new
(
"app"
);
src
=
gst_element_factory_make
_or_warn
(
"filesrc"
,
"src"
);
decoder
=
gst_element_factory_make
_or_warn
(
"mad"
,
"dec"
);
osssink
=
gst_element_factory_make
_or_warn
(
"osssink"
,
"sink"
);
queue
=
gst_element_factory_make
_or_warn
(
"queue"
,
"queue"
);
src
=
gst_element_factory_make
(
"filesrc"
,
"src"
);
decoder
=
gst_element_factory_make
(
"mad"
,
"dec"
);
osssink
=
gst_element_factory_make
(
"osssink"
,
"sink"
);
queue
=
gst_element_factory_make
(
"queue"
,
"queue"
);
thread
=
gst_thread_new
(
"playback"
);
g_object_set
(
G_OBJECT
(
src
),
"location"
,
location
,
NULL
);
...
...
tests/examples/seek/seek.c
View file @
22c212d3
...
...
@@ -93,10 +93,10 @@ make_mp3_pipeline (const gchar *location)
pipeline
=
gst_pipeline_new
(
"app"
);
src
=
gst_element_factory_make
_or_warn
(
"filesrc"
,
"src"
);
decoder
=
gst_element_factory_make
_or_warn
(
"mad"
,
"dec"
);
osssink
=
gst_element_factory_make
_or_warn
(
"osssink"
,
"sink"
);
queue
=
gst_element_factory_make
_or_warn
(
"queue"
,
"queue"
);
src
=
gst_element_factory_make
(
"filesrc"
,
"src"
);
decoder
=
gst_element_factory_make
(
"mad"
,
"dec"
);
osssink
=
gst_element_factory_make
(
"osssink"
,
"sink"
);
queue
=
gst_element_factory_make
(
"queue"
,
"queue"
);
thread
=
gst_thread_new
(
"playback"
);
g_object_set
(
G_OBJECT
(
src
),
"location"
,
location
,
NULL
);
...
...
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