Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/GStreamer/gst-plugins-good.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-05-13docs: Port all docstring to gtk-doc markdownThibault Saunier
2018-01-25directsoundsink: Add support for a DeviceProviderSebastian Dröge
https://bugzilla.gnome.org/show_bug.cgi?id=792782
2017-10-12directsoundsink: simplify how DirecSoundBuffer is clearedPhilippe Renon
we always want to clear the whole buffer so no need to start from offset even if the offset is always zero. https://bugzilla.gnome.org/show_bug.cgi?id=788847
2017-10-12directsoundsink: fix commentPhilippe Renon
https://bugzilla.gnome.org/show_bug.cgi?id=788847
2017-10-12directsoundsink: don't call set_volume with private scaled volumePhilippe Renon
use get_volume() instead to get unscaled volume https://bugzilla.gnome.org/show_bug.cgi?id=788847
2017-10-12directsoundsink: remove duplicate volume initializationPhilippe Renon
https://bugzilla.gnome.org/show_bug.cgi?id=788847
2017-05-08directsoundsink: Use GstClock API instead of Sleep() for waitingDustin Spicuzza
It's more accurate and allows cancellation. https://bugzilla.gnome.org/show_bug.cgi?id=773681
2017-05-08directsoundsink: Fix corner case causing large CPU usageNirbheek Chauhan
We were unnecessarily looping/goto-ing repeatedly when we had exactly the amount of data as the free space, and also when the free space was too small. This, as it turns out, is a very common scenario with Directsound on Windows. Fixes https://bugzilla.gnome.org/show_bug.cgi?id=773681 We have to do polling here because the event notification API that Directsound exposes cannot be used with live playback since all events must be registered in advance with the capture buffer, you cannot add/remove them once playback has begun. Directsoundsrc had the same problem. See also: https://bugzilla.gnome.org/show_bug.cgi?id=781249
2017-05-08directsoundsink: Clean up some debug loggingNirbheek Chauhan
Don't need to print the function name, gstreamer does it for you. https://bugzilla.gnome.org/show_bug.cgi?id=773681
2016-08-18directsound: port away from old DirectX APINirbheek Chauhan
D3DX has been deprecated for the last 4 years and latest versions of Windows no longer ship headers for it. This is fine as long as you're building with Cerbero's Wine-based DirectX headers, but sucks if you want to build against the actual Windows SDK. We were just using it to get error strings anyway, so just use the generic error string API.
2016-03-24good: use new gst_element_class_add_static_pad_template()Vineeth TM
https://bugzilla.gnome.org/show_bug.cgi?id=763076
2016-03-08dirctsoundsink: Setting volume should not unmuteThomas Roos
https://bugzilla.gnome.org/show_bug.cgi?id=755106
2016-03-08dirctsoundsink: Fix volume reset on unmuteThomas Roos
https://bugzilla.gnome.org/show_bug.cgi?id=755106
2015-12-21directsoundsink: Fix sleep for buffer-time lower than 200000Thomas Roos
https://bugzilla.gnome.org/show_bug.cgi?id=748680
2015-12-14directsoundsink: Check device property and fail if device can't be foundThomas Roos
Don't use default if a specific device is set but it can't be found. https://bugzilla.gnome.org/show_bug.cgi?id=759452
2015-12-14directsoundsink: Fix handling of the mute propertyThomas Roos
- set mute value at startup - correct set and get mute functions https://bugzilla.gnome.org/show_bug.cgi?id=755106
2015-12-11directsoundsink: Check the return value of GetStatus() too to decide if ↵Thomas Roos
there was an error If GetStatus() fails, the status itself won't be very meaningful but we also have to look at its return value. This fixes blocking pipelines when removing sound devices or during other errors, where we wouldn't notice the error and then wait forever. https://bugzilla.gnome.org/show_bug.cgi?id=734098
2015-08-17directsoundsink: allow specifying audio playback deviceDustin Spicuzza
https://bugzilla.gnome.org/show_bug.cgi?id=753670
2015-03-06directsoundsink: fix modulo math with ringbuffer parametersThiago Santos
To get a multiple of bpf use a subtraction and not an addition https://bugzilla.gnome.org/show_bug.cgi?id=745684
2013-08-21directsoundsink: WAVEFORMATEX is unsigned for 8 bit integers, and signed for ↵Sebastian Dröge
others Probably fixes https://bugzilla.gnome.org/show_bug.cgi?id=705477
2013-03-26directsoundsink: Check for a subset instead of non-empty intersection in ↵Sebastian Dröge
accept-caps
2013-03-26directsoundsink: Properly handle the filter caps in get_caps()Sebastian Dröge
2013-03-26directsoundsink: Don't unnecessarily get the parent class in class_initSebastian Dröge
The trampoline generated by G_DEFINE_TYPE does that already.
2012-12-13directsound, waveform: fix compilation errors caused by circular includesРуслан Ижбулатов
https://bugzilla.gnome.org/show_bug.cgi?id=690124
2012-11-04Fix FSF addressTim-Philipp Müller
https://bugzilla.gnome.org/show_bug.cgi?id=687520
2012-09-19directsoundsink: Specify endianness in IEC 61937 payloadingArun Raghavan
DirectSound expects native endian byte order. https://bugzilla.gnome.org/show_bug.cgi?id=678021
2012-09-11directsoundsink: port to the new GLib thread APIMark Nauwelaerts
2012-08-28docs: gst-launch -> gst-launch-1.0 and ffmpegcolorspace -> videoconvertTim-Philipp Müller
2012-08-06directsoundsink: Do not overwrite the DS buffer when testing for AC3 supportXavi Artigas
https://bugzilla.gnome.org/show_bug.cgi?id=680706 Conflicts: sys/directsound/gstdirectsoundsink.c
2012-07-04directsoundsink: Fix query function implementation; more debuggingРуслан Ижбулатов
2012-07-04directsoundsink: Fix spec stuff in directsoundsinkРуслан Ижбулатов
2012-07-04directsoundsink: fix access to invalid pointer in set_volumeAndoni Morales Alastruey
2012-07-04directsoundsink: Fix caps leaksSebastian Dr=C3=B6ge
2012-07-04directsoundsink: fix acceptcaps checkAndoni Morales Alastruey
2012-07-04directsoundsink: use helper function to check for spdif formatsAndoni Morales Alastruey
2012-07-04directsoundsink: add support for DTSAndoni Morales Alastruey
2012-07-04directsoundsink: force 48000 kHz force AC-3 over spdifAndoni Morales Alastruey
2012-07-04directsoundsink: add support for ac-3 over spdifAndoni Morales Alastruey
2012-04-10Use new gst_element_class_set_static_metadata()Tim-Philipp Müller
2012-01-27direcsoundsink: Port element to 0.11Andoni Morales Alastruey
2011-10-21interfaces: clean up the use of iface and class/klassStefan Sauer
2011-07-10directsoundsink: 16-bit audio is signed, 8-bit is unsigned.Philip Jägenstedt
Pretending to handle 8-bit signed causes distorted audio when actually given such audio, which you will get if passing 8-bit unsigned through audioconvert ! audioresample, as audioresample only handles 8-bit signed. Fixes #605834. Signed-off-by: David Schleef <ds@schleef.org>
2011-04-14directsoundsink: Add conditionals on WAVE_FORMAT_DOLBY_AC3_SPDIFDavid Schleef
2011-02-01directsound: arrange for definition of _swab on CygwinMark Nauwelaerts
gstdirectsoundsink.c: In function 'gst_directsound_sink_write': gstdirectsoundsink.c:557: error: implicit declaration of function '_swab' gstdirectsoundsink.c:557: error: nested extern declaration of '_swab'
2010-06-09directsoundsink: Plug some memleak and support 22050Hz mono sound.Julien Moutte
Segment size needs to be a multiple of the sample size in bytes.
2010-06-06sys: Don't use GST_DEBUG_FUNCPTR for GObject vfuncsSebastian Dröge
2010-03-27directsoundsink: fix redundant function redeclaration compiler warningsTim-Philipp Müller
Re-apply this again as well, as it was undone by the previous commit..
2010-03-27gst_element_class_set_details => gst_element_class_set_details_simpleBenjamin Otte
Apply this again, as it was overwritten by the previous commit. Merging is hard, apparently.
2010-03-27directsoundsink: Implement SPDIF support for AC3.Julien Moutte
Detect if the sound card supports SPDIF passthru of AC3 and add necessary code to support that like alsasink.
2010-03-18directsoundsink: fix redundant function redeclaration compiler warningsTim-Philipp Müller