Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
gst-plugins-good1.0
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
public-projects
gst-plugins-good1.0
Commits
7453aa51
Commit
7453aa51
authored
10 years ago
by
Sebastian Dröge
Browse files
Options
Downloads
Patches
Plain Diff
New upstream bugfix release.
parent
7df0c4d6
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
debian/changelog
+6
-0
6 additions, 0 deletions
debian/changelog
debian/patches/rtpmux-Don-t-set-PROXY_CAPS-flag-on-the-src-pad.patch
+0
-32
0 additions, 32 deletions
...hes/rtpmux-Don-t-set-PROXY_CAPS-flag-on-the-src-pad.patch
debian/patches/series
+0
-1
0 additions, 1 deletion
debian/patches/series
with
6 additions
and
33 deletions
debian/changelog
+
6
−
0
View file @
7453aa51
gst-plugins-good1.0 (1.4.4-1) experimental; urgency=medium
* New upstream bugfix release.
-- Sebastian Dröge <slomo@debian.org> Thu, 06 Nov 2014 12:47:03 +0100
gst-plugins-good1.0 (1.4.3-2) unstable; urgency=medium
* debian/patches/rtpmux-Don-t-set-PROXY_CAPS-flag-on-the-src-pad.patch
...
...
This diff is collapsed.
Click to expand it.
debian/patches/rtpmux-Don-t-set-PROXY_CAPS-flag-on-the-src-pad.patch
deleted
100644 → 0
+
0
−
32
View file @
7df0c4d6
From 0ee384b251ae6ee4ac18210f3a0555898543de5f Mon Sep 17 00:00:00 2001
From: Sjoerd Simons <sjoerd@luon.net>
Date: Fri, 17 Oct 2014 22:23:27 +0200
Subject: [PATCH] rtpmux: Don't set PROXY_CAPS flag on the src pad
rtpmux behaves like a funnel in that it forwards whatever upstream is
sending buffers. So setting proxy caps doesn't make sense as the
upstream don't have to have compatible caps, thus resulting in an empty
caps set as a result of a caps query. Instead set fixed caps just
as funnel does.
https://bugzilla.gnome.org/show_bug.cgi?id=738722
---
gst/rtpmanager/gstrtpmux.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gst/rtpmanager/gstrtpmux.c b/gst/rtpmanager/gstrtpmux.c
index 77c2a5c..5cddd04 100644
--- a/gst/rtpmanager/gstrtpmux.c
+++ b/gst/rtpmanager/gstrtpmux.c
@@ -245,7 +245,7 @@
gst_rtp_mux_init (GstRTPMux * rtp_mux)
"src"), "src");
gst_pad_set_event_function (rtp_mux->srcpad,
GST_DEBUG_FUNCPTR (gst_rtp_mux_src_event));
- GST_PAD_SET_PROXY_CAPS (rtp_mux->srcpad);
+ gst_pad_use_fixed_caps (rtp_mux->srcpad);
gst_element_add_pad (GST_ELEMENT (rtp_mux), rtp_mux->srcpad);
rtp_mux->ssrc = DEFAULT_SSRC;
--
2.1.1
This diff is collapsed.
Click to expand it.
debian/patches/series
deleted
100644 → 0
+
0
−
1
View file @
7df0c4d6
rtpmux-Don-t-set-PROXY_CAPS-flag-on-the-src-pad.patch
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment