Sebastian Dröge [Mon, 22 Dec 2014 10:46:05 +0000 (11:46 +0100)]
MAINTAINERS: Update my mail address
Stefan Sauer [Sun, 21 Dec 2014 12:47:25 +0000 (07:47 -0500)]
audiomixer: fix build flag order
Have the libraries/inlcudes from plugins-bad first to avoid picking up the installed version.
Fixes the build when the local api changed.
Stefan Sauer [Sat, 20 Dec 2014 17:24:53 +0000 (12:24 -0500)]
freeverb: add a few presets
Nicolas Dufresne [Fri, 19 Dec 2014 18:18:50 +0000 (13:18 -0500)]
gltest: Port to new API
https://bugzilla.gnome.org/show_bug.cgi?id=740900
Nicolas Dufresne [Fri, 19 Dec 2014 17:22:12 +0000 (12:22 -0500)]
glbufferpool: Always recalculate buffer size
Actually we should always recalculate buffer size since our buffer size
even when not-padded is smaller for many sub-sampled formats. This is
because we don't add padding between the planes.
https://bugzilla.gnome.org/show_bug.cgi?id=740900
Nicolas Dufresne [Fri, 19 Dec 2014 17:12:08 +0000 (12:12 -0500)]
glmemory: No need for padding
A memory object cannot be put on stack, so no need for padding.
Nicolas Dufresne [Fri, 19 Dec 2014 17:11:08 +0000 (12:11 -0500)]
gl: Add support for GstVideoAlignment
This allow saving a copy with libav video decoders or decoders with
similar padding requirement.
https://bugzilla.gnome.org/show_bug.cgi?id=740900
Nicolas Dufresne [Sat, 22 Nov 2014 16:25:23 +0000 (11:25 -0500)]
glmemory: Handle upload/download flags from map
Problem was that if buffer was mapped READWRITE (state of buffers from
libav right now), mapping it READ/GL will not upload. This is because the
flag is only set when the buffer is unmapped. We can fix this by setting
the flags in map. This result in already mapped buffer that get mapped
to be read in GL will be uploaded. The problem is that if the write
mapper makes modification afterward, the modification will never get
uploaded.
https://bugzilla.gnome.org/show_bug.cgi?id=740900
Nicolas Dufresne [Sun, 14 Dec 2014 02:47:38 +0000 (21:47 -0500)]
glmemory: Handle custom stride with OPENGL3
https://bugzilla.gnome.org/show_bug.cgi?id=740900
Sebastian Dröge [Fri, 19 Dec 2014 14:05:58 +0000 (15:05 +0100)]
decklink: Fix various compiler warnings with gcc
Sebastian Dröge [Fri, 19 Dec 2014 13:50:09 +0000 (14:50 +0100)]
decklink: Re-add the COM initialization code for Windows
Untested, and we will never deinitialize COM again.
Sebastian Dröge [Fri, 19 Dec 2014 13:38:03 +0000 (14:38 +0100)]
decklink: Remove in-same-pipeline detection code for audio/video elements of the same device
This causes deadlocks sometimes for some reason.
Sebastian Dröge [Fri, 19 Dec 2014 13:35:03 +0000 (14:35 +0100)]
decklinkvideosink: Implement clock slaving
Sebastian Dröge [Fri, 19 Dec 2014 12:52:08 +0000 (13:52 +0100)]
decklinkvideosink: Add some more debug output for when frames are scheduled
Sebastian Dröge [Fri, 19 Dec 2014 12:28:29 +0000 (13:28 +0100)]
decklink: Add property for configuring the buffer size of the sources
Sebastian Dröge [Fri, 19 Dec 2014 12:24:10 +0000 (13:24 +0100)]
decklinkaudiosrc: Implement timestamp jitter and discont handling
Sebastian Dröge [Fri, 19 Dec 2014 11:37:30 +0000 (12:37 +0100)]
decklink: Our capture time is the end timestamp of the buffer, subtract the duration
Sebastian Dröge [Fri, 19 Dec 2014 11:30:04 +0000 (12:30 +0100)]
decklink: Allow for a maximum of 5 packets to be queued up
In case downstream is a bit slow with consuming packets at times.
Sebastian Dröge [Fri, 19 Dec 2014 11:03:09 +0000 (12:03 +0100)]
decklink: Implement latency query in sources and remember selected mode
Sebastian Dröge [Thu, 18 Dec 2014 17:30:16 +0000 (18:30 +0100)]
decklink: Remove obsolete files
Sebastian Dröge [Thu, 18 Dec 2014 16:31:20 +0000 (17:31 +0100)]
decklink: Add initial version of audio and video sources
Sebastian Dröge [Sat, 13 Dec 2014 16:23:31 +0000 (17:23 +0100)]
decklink: Initial version of the audio/video sink rewrite
Sebastian Dröge [Fri, 19 Dec 2014 12:04:58 +0000 (13:04 +0100)]
audiomixer: Track discont-time per pad instead of globally
We do discont handling per pad, not per element!
Branko Subasic [Mon, 15 Dec 2014 15:27:16 +0000 (16:27 +0100)]
curlsmtpsink: add final boundary to all multipart emails
Corrected the final boundary mechanism so that a final boundary is
added to each mail with multipart content that is sent,
not just to the last one.
https://bugzilla.gnome.org/show_bug.cgi?id=741553
Sebastian Dröge [Thu, 18 Dec 2014 22:33:58 +0000 (23:33 +0100)]
audiomixer: We're only EOS if all our pads are actually EOS
Having a buffer or not on the pad is irrelevant.
Sebastian Dröge [Thu, 18 Dec 2014 21:42:14 +0000 (22:42 +0100)]
audiomixer: The pad's size is always supposed to be the whole buffer size
And the offset the offset into that buffer. Changing the size will
cause all kinds of assumptions to fail and cause crashes.
Sebastian Dröge [Thu, 18 Dec 2014 21:04:38 +0000 (22:04 +0100)]
videoaggregator: Don't try to map NULL buffers
Sebastian Dröge [Thu, 18 Dec 2014 21:03:04 +0000 (22:03 +0100)]
videoaggregator: Make sure to always update the pad's videoinfo together with buffers
Otherwise the videoinfo and the buffer content can go out of sync.
Sebastian Dröge [Thu, 18 Dec 2014 10:48:37 +0000 (11:48 +0100)]
compositor: Fix memory leak when no buffer is available for a pad currently
CID
1258718
Sebastian Dröge [Thu, 18 Dec 2014 09:54:05 +0000 (10:54 +0100)]
Automatic update of common submodule
From
ef1ffdc to
f2c6b95
Thiago Santos [Thu, 18 Dec 2014 01:01:23 +0000 (22:01 -0300)]
x265enc: reuse the gstvideo proxy getcaps
The caps query is implementing the same logic as the default
handler from the base class. Reuse it to simplify code.
Thiago Santos [Thu, 18 Dec 2014 00:52:13 +0000 (21:52 -0300)]
opusenc: plug ref leak of template caps
the pad template caps is already a new ref. No need to copy.
Sebastian Dröge [Wed, 17 Dec 2014 18:51:32 +0000 (19:51 +0100)]
aggregator: Add function to allow subclasses to set their own latency
For audiomixer this is one blocksize, for videoaggregator this should
be the duration of one output frame.
Sebastian Dröge [Wed, 17 Dec 2014 18:37:22 +0000 (19:37 +0100)]
audiomixer: Make sure to not have pads being behind the current offset
We would break sync between the different streams then.
Sebastian Dröge [Wed, 17 Dec 2014 16:54:09 +0000 (17:54 +0100)]
aggregator: Add a timeout parameter to ::aggregate()
When this is TRUE, we really have to produce output. This happens
in live mixing mode when we have to output something for the current
time, no matter if we have enough input or not.
Sebastian Dröge [Wed, 17 Dec 2014 17:20:15 +0000 (18:20 +0100)]
audiomixer: Add queues after the (live) sources in the unit test
Alessandro Decina [Wed, 17 Dec 2014 01:20:54 +0000 (12:20 +1100)]
avfvideosrc: improve timestamping and latency reporting
Use AVF provided timings to timestamp output buffers. Use the running time at
the time the first buffer is produced to base timestamps on. Report 1-frame
latency based on the negotiated framerate instead of hardcoding 4ms latency.
Raimo Järvi [Tue, 16 Dec 2014 03:24:26 +0000 (22:24 -0500)]
dshowdecwrapper: Remove dependency on ATL
This fixes compiling with Visual C++ Express
that doesn't include ATL.
https://bugzilla.gnome.org/show_bug.cgi?id=677223
Matthew Bader [Fri, 5 Dec 2014 04:30:23 +0000 (23:30 -0500)]
dshowsrcwrapper: Added support for image/jpeg and h264
https://bugzilla.gnome.org/show_bug.cgi?id=741188
Tim-Philipp Müller [Tue, 16 Dec 2014 19:49:35 +0000 (19:49 +0000)]
tests: fix aggregator unit test after property renaming
Sebastian Dröge [Tue, 16 Dec 2014 16:37:12 +0000 (17:37 +0100)]
audiomixer: Implement get_next_time()
Sebastian Dröge [Tue, 16 Dec 2014 16:33:01 +0000 (17:33 +0100)]
aggregator: Some minor cleanup
Matthew Waters [Fri, 5 Dec 2014 07:19:54 +0000 (18:19 +1100)]
aggregator: make the src pad task drive the pipeline for live pipelines
This removes the uses of GAsyncQueue and replaces it with explicit
GMutex, GCond and wakeup count which is used for the non-live case.
For live pipelines, the aggregator waits on the clock until either
data arrives on all sink pads or the expected output buffer time
arrives plus the timeout/latency at which time, the subclass
produces a buffer.
https://bugzilla.gnome.org/show_bug.cgi?id=741146
Matthew Waters [Mon, 8 Dec 2014 04:18:25 +0000 (15:18 +1100)]
videoaggregator: always try to use newer buffers
instead of dropping them for being too old. This ensures that
the newest buffer is always used for rendering
Wim Taymans [Tue, 16 Dec 2014 12:35:14 +0000 (13:35 +0100)]
rectangle: clear rectangle struct before use
Vincent Penquerc'h [Mon, 15 Dec 2014 15:21:50 +0000 (15:21 +0000)]
opusparse: fix frame size determination
https://bugzilla.gnome.org/show_bug.cgi?id=741321
Mathieu Duponchelle [Thu, 19 Jun 2014 19:32:09 +0000 (21:32 +0200)]
mxfdemux: Use IndexTableSegments.
This speeds up seeking drastically.
Fixes https://bugzilla.gnome.org/show_bug.cgi?id=732294
Sebastian Rasmussen [Sun, 14 Dec 2014 00:29:26 +0000 (01:29 +0100)]
tests/aggregator: Use correct type when setting property
Fixes https://bugzilla.gnome.org/show_bug.cgi?id=741495
Sudip Jain [Thu, 8 May 2014 05:11:03 +0000 (10:41 +0530)]
mpegtsbase: scan more bytes to find initial PCRs
Fixes playback of Samsung-Colorful-Variety-1080i.ts.
https://bugzilla.gnome.org/show_bug.cgi?id=729768
Tim-Philipp Müller [Fri, 12 Dec 2014 20:57:28 +0000 (20:57 +0000)]
Revert "openh264: fix to work with released versions and master of upstream"
This reverts commit
15394aa70543f55c54fa8a474805224f4138f76c.
The latest release (v1.1) does not have pkg-config support
yet, so this plugin won't be built with the latest release.
Cerbero uses the latest release, so this makes cerbero
builds fail, which expect the plugin to be built.
We can re-commit this once there's a release that includes
pkg-config support.
Zaheer Abbas Merali [Fri, 12 Dec 2014 18:05:23 +0000 (10:05 -0800)]
openh264: fix to work with released versions and master of upstream
Thibault Saunier [Fri, 12 Dec 2014 10:21:27 +0000 (11:21 +0100)]
watchdog: GstElement->state is protected with the OBJECT_LOCK
Not the STATE_LOCK.
gst_watchdog_feed was already always called with the OBJECT_LOCK taken.
Thibault Saunier [Thu, 27 Nov 2014 19:48:24 +0000 (20:48 +0100)]
videoaggregator: Hide some more fields from the API
+ Add some documentation
Tim-Philipp Müller [Fri, 12 Dec 2014 00:30:21 +0000 (00:30 +0000)]
onvif: fix 'make dist'
Thiago Santos [Fri, 12 Dec 2014 00:01:48 +0000 (21:01 -0300)]
adaptivedemux: fix seek event handling
Properly do seeking and avoid only seeking when the segment was updated.
It would cause seeks after the stream was EOS to fail, for example.
https://bugzilla.gnome.org/show_bug.cgi?id=738920
Olivier Crête [Tue, 18 Nov 2014 00:26:53 +0000 (19:26 -0500)]
rtponviftimestamp: Automatically discover the ntp-offset by default.
This only works if no packets are pushed in before the pipeline goes
to playing. So it helps to have a live source.
https://bugzilla.gnome.org/show_bug.cgi?id=731769
Guillaume Desmottes [Thu, 5 Jun 2014 13:06:33 +0000 (15:06 +0200)]
add rtponvifextract element
https://bugzilla.gnome.org/show_bug.cgi?id=731769
Guillaume Desmottes [Mon, 28 Apr 2014 09:07:17 +0000 (11:07 +0200)]
add rtponviftimestamp element
https://bugzilla.gnome.org/show_bug.cgi?id=731769
Wang Xin-yu (王昕宇) [Mon, 8 Dec 2014 03:02:51 +0000 (11:02 +0800)]
glfilter: fix position/texcoord attrib index usage
https://bugzilla.gnome.org/show_bug.cgi?id=741231
Matthew Waters [Thu, 11 Dec 2014 07:17:02 +0000 (18:17 +1100)]
glfiltercube: use a shader everywhere
Matthew Waters [Thu, 11 Dec 2014 07:15:02 +0000 (18:15 +1100)]
gl: fixup vao and vbo usage for legacy GL
Matthew Waters [Thu, 11 Dec 2014 03:57:18 +0000 (14:57 +1100)]
gleffects: don't abort when setting the effect to 0,1,2
Matthew Waters [Wed, 10 Dec 2014 01:48:33 +0000 (12:48 +1100)]
gl/examples: fixup sdl example for gluPerspective removal
Nick Stoughton [Tue, 9 Dec 2014 16:38:55 +0000 (08:38 -0800)]
bluez: support compile-time distinction between bluez4 and bluez5
Signed-off-by: Nick Stoughton <nstoughton@aether.com>
https://bugzilla.gnome.org/show_bug.cgi?id=738626
Thiago Santos [Wed, 10 Dec 2014 21:23:02 +0000 (18:23 -0300)]
adaptivedemux: check the return from update_manifest correctly
It is a GstFlowReturn and not a boolean
David Waring [Wed, 10 Dec 2014 09:24:17 +0000 (09:24 +0000)]
dashdemux: Change period when setting by period id.
Make gst_mpd_client_set_period_id set the current period index when it finds a
period with a matching period id.
https://bugzilla.gnome.org/show_bug.cgi?id=741322
Thiago Santos [Wed, 10 Dec 2014 18:27:49 +0000 (15:27 -0300)]
mssdemux: fix reverse playback fragment tracking
Rework reverse fragment traversing with repetition fields to prevent
NULL pointer deref and avoid never advancing a fragment as the variable
is unsigned and would always be non-negative.
CID #
1257627
CID #
1257628
Alessandro Decina [Wed, 10 Dec 2014 13:02:26 +0000 (00:02 +1100)]
vtenc: bump rank to PRIMARY
Alessandro Decina [Wed, 10 Dec 2014 11:36:53 +0000 (22:36 +1100)]
vtenc: negotiate profile and level with downstream
Alessandro Decina [Wed, 10 Dec 2014 08:44:01 +0000 (19:44 +1100)]
vtenc: report latency
David Waring [Fri, 5 Dec 2014 16:20:08 +0000 (16:20 +0000)]
dashdemux: Find current segment in the streams that have just been setup
Using demux->streams will just skip the whole loop as demux->streams will
always be NULL at that point
https://bugzilla.gnome.org/show_bug.cgi?id=741285
Mathieu Duponchelle [Tue, 9 Dec 2014 04:03:11 +0000 (05:03 +0100)]
mirror: Needs remap when the mode changes.
This caused the user to think the mode wasn't taken into account.
Mathieu Duponchelle [Tue, 9 Dec 2014 03:28:17 +0000 (04:28 +0100)]
Revert "h264parse: expose compatible profiles to downstream"
This reverts commit
3910cbe7ce1a67ed5506f87e4c5a005c168d0e6c.
Thiago Santos [Mon, 8 Dec 2014 11:53:00 +0000 (08:53 -0300)]
adaptivedemux: do not try to unlock not locked mutex
A misplaced unlock was causing an assertion for playback with a
set stop time
Thiago Santos [Mon, 8 Dec 2014 11:24:17 +0000 (08:24 -0300)]
gst-libs: build order: uridownloader before adaptivedemux
Otherwise make install fails
Sebastian Dröge [Fri, 5 Dec 2014 15:33:20 +0000 (16:33 +0100)]
vtenc: Add properties to specify the maximum keyframe interval in frames and seconds
Sebastian Dröge [Fri, 5 Dec 2014 15:15:23 +0000 (16:15 +0100)]
vtenc: Fix conversion of the bitrate property and our internal bitrate storage
The property is in kbit/s and we store it in bit/s, so just multiply and
divide by 1000. No need to put a factor of 8 in there.
kVTCompressionPropertyKey_AverageBitRate is also in bit/s according to
its documentation.
Arun Raghavan [Fri, 5 Dec 2014 07:42:59 +0000 (13:12 +0530)]
intervideosrc: Fix a memory leak
Frees the source ARGB black frame that we use to create the black frame
in our target format.
Sreerenj Balachandran [Tue, 2 Dec 2014 08:10:39 +0000 (10:10 +0200)]
h264parse: expose compatible profiles to downstream
Some video bitstreams report a too restrictive set of profiles. If a video
decoder was to strictly follow the indicated profile, it wouldn't support that
stream, whereas it could in theory and in practice. So we should relax the
profile restriction for allowing the decoder to get connected with parser.
https://bugzilla.gnome.org/show_bug.cgi?id=739992
Chun-wei Fan [Wed, 1 May 2013 03:17:02 +0000 (11:17 +0800)]
dshowvideosink: Port to 1.0 and new GLib threading API
This updates the dshowvideosink to work with the GStreamer 1.0.x APIs, and
avoids the use of deprecated GLib threading API that are now used since
GLib 2.32+
https://bugzilla.gnome.org/show_bug.cgi?id=699364
Thiago Santos [Thu, 4 Dec 2014 04:46:43 +0000 (01:46 -0300)]
mssdemux: add live support
Implement the functions of adaptivedemux to have live support
enabled. This allows mssdemux to refresh the Manifest periodically
Matthew Bader [Thu, 4 Dec 2014 20:52:44 +0000 (15:52 -0500)]
dshowdecwrapper: Port to 1.x
https://bugzilla.gnome.org/show_bug.cgi?id=740945
Reynaldo H. Verdejo Pinochet [Mon, 1 Dec 2014 19:40:24 +0000 (16:40 -0300)]
vcdsrc: port to 1.
https://bugzilla.gnome.org/show_bug.cgi?id=547661
Thiago Santos [Thu, 4 Dec 2014 15:21:04 +0000 (12:21 -0300)]
mssdemux: fix getting current position in segments when after last one
For live streams this makes a difference when resyncing after a
Manifest refresh, otherwise it doesn't know where to restart
Thiago Santos [Wed, 3 Dec 2014 02:27:29 +0000 (23:27 -0300)]
mssdemux: support manifests with repetition fragments
Read the "r" attribute from fragments to support fragments nodes
that use repetition to have a shorter Manifest xml.
Instead of doing:
<c d="100" />
<c d="100" />
You can use:
<c d="100" r="2" />
Thiago Santos [Sat, 22 Nov 2014 04:01:50 +0000 (01:01 -0300)]
mssdemux: port to adaptivedemux base class
Matthew Bader [Wed, 3 Dec 2014 21:13:17 +0000 (16:13 -0500)]
dshowsrcwrapper: Fixed null caps comparison
https://bugzilla.gnome.org/show_bug.cgi?id=741086
Flávio Ribeiro [Thu, 4 Dec 2014 04:12:08 +0000 (02:12 -0200)]
hlssink: remove unnecessary title on EXTINF tag
According to the HLS spec the remainder of the line following
the comma on EXTINF tag is not required. This patch removes
the fake title and saves some bytes on the playlist.
https://bugzilla.gnome.org/show_bug.cgi?id=741096
Ramprakash Jelari [Thu, 4 Dec 2014 15:07:51 +0000 (20:37 +0530)]
gl: Rename gst-launch-0.10 to gst-launch-1.0 in docs
Sebastian Dröge [Thu, 4 Dec 2014 14:42:55 +0000 (15:42 +0100)]
decklink: Fix make distcheck
And properly dist all headers and source files.
Thiago Santos [Wed, 3 Dec 2014 21:31:06 +0000 (18:31 -0300)]
adaptivedemux: release threads waiting for manifest update on shutdown
For live streams, also unblock threads that might be waiting for a manifest
update when stopping the pipeline.
Also add some more debug messages
Thiago Santos [Wed, 3 Dec 2014 16:52:07 +0000 (13:52 -0300)]
adaptivedemux: use gst_task_stop instead of gst_task_pause
To avoid race conditions with gst_task_stop(); gst_task_join() with
another thread doing gst_task_pause(), the joining thread would be
waiting for the task to stop but it would never happen. So just
use gst_task_stop() everywhere to prevent more mutexes
Thiago Santos [Wed, 3 Dec 2014 15:48:42 +0000 (12:48 -0300)]
adaptivedemux: fix deadlock when stopping streams
Remember to unlock the manifest's lock when leaving the download task.
Sebastian Dröge [Wed, 3 Dec 2014 15:01:11 +0000 (16:01 +0100)]
decklink: Fix compiler warnings with gcc in the dispatcher
Philippe Normand [Wed, 3 Dec 2014 14:30:43 +0000 (15:30 +0100)]
glsyncmeta: add G_END_DECLS
Sebastian Dröge [Wed, 3 Dec 2014 14:07:16 +0000 (15:07 +0100)]
decklink: Update Windows SDK headers to 10.3.1
No idea where the DecklinkAPIDispatch.cpp comes from on Windows,
but this should still work. Will just become a problem once we
use other parts of the API.
Sebastian Dröge [Wed, 3 Dec 2014 13:42:43 +0000 (14:42 +0100)]
decklink: Update OS X SDK headers to 10.3.1
Sebastian Dröge [Wed, 3 Dec 2014 13:39:13 +0000 (14:39 +0100)]
decklink: Update Linux SDK headers to 10.3.1
Thiago Santos [Wed, 3 Dec 2014 13:06:09 +0000 (10:06 -0300)]
adaptivedemux: remove unused error variable
CID #
1256556
Thiago Santos [Wed, 3 Dec 2014 12:45:58 +0000 (09:45 -0300)]
adaptivedemux: remove more get_duration checks
Subclasses must implement get_duration function. If they do not know
the duration they can return GST_CLOCK_TIME_NONE