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
bdb46764
Commit
bdb46764
authored
May 09, 2011
by
Wim Taymans
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qos: _qos_full -> _qos
parent
816f4e79
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
4 deletions
+6
-4
ext/libvisual/visual.c
ext/libvisual/visual.c
+1
-1
ext/theora/gsttheoradec.c
ext/theora/gsttheoradec.c
+1
-1
gst/playback/gststreamsynchronizer.c
gst/playback/gststreamsynchronizer.c
+4
-2
No files found.
ext/libvisual/visual.c
View file @
bdb46764
...
...
@@ -544,7 +544,7 @@ gst_visual_src_event (GstPad * pad, GstEvent * event)
GstClockTimeDiff
diff
;
GstClockTime
timestamp
;
gst_event_parse_qos
(
event
,
&
proportion
,
&
diff
,
&
timestamp
);
gst_event_parse_qos
(
event
,
NULL
,
&
proportion
,
&
diff
,
&
timestamp
);
/* save stuff for the _chain function */
GST_OBJECT_LOCK
(
visual
);
...
...
ext/theora/gsttheoradec.c
View file @
bdb46764
...
...
@@ -574,7 +574,7 @@ theora_dec_src_event (GstPad * pad, GstEvent * event)
GstClockTimeDiff
diff
;
GstClockTime
timestamp
;
gst_event_parse_qos
(
event
,
&
proportion
,
&
diff
,
&
timestamp
);
gst_event_parse_qos
(
event
,
NULL
,
&
proportion
,
&
diff
,
&
timestamp
);
/* we cannot randomly skip frame decoding since we don't have
* B frames. we can however use the timestamp and diff to not
...
...
gst/playback/gststreamsynchronizer.c
View file @
bdb46764
...
...
@@ -211,7 +211,7 @@ gst_stream_synchronizer_src_event (GstPad * pad, GstEvent * event)
gint64
running_time_diff
;
GstStream
*
stream
;
gst_event_parse_qos
(
event
,
&
proportion
,
&
diff
,
&
timestamp
);
gst_event_parse_qos
(
event
,
NULL
,
&
proportion
,
&
diff
,
&
timestamp
);
gst_event_unref
(
event
);
GST_STREAM_SYNCHRONIZER_LOCK
(
self
);
...
...
@@ -245,7 +245,9 @@ gst_stream_synchronizer_src_event (GstPad * pad, GstEvent * event)
goto
out
;
}
event
=
gst_event_new_qos
(
proportion
,
diff
,
timestamp
);
event
=
gst_event_new_qos
(
GST_QOS_TYPE_UNDERFLOW
,
proportion
,
diff
,
timestamp
);
break
;
}
default:
...
...
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