summaryrefslogtreecommitdiff
path: root/omx/gstomxaudiosink.c
Commit message (Collapse)AuthorAgeFilesLines
* omx: allow gst_omx_port_acquire_buffer() to not wait for buffersGuillaume Desmottes2018-08-301-1/+1
| | | | | | Will be needed to implement GST_BUFFER_POOL_ACQUIRE_FLAG_DONTWAIT. https://bugzilla.gnome.org/show_bug.cgi?id=796918
* turn GstOMXComponent to a GstMiniObjectGuillaume Desmottes2018-08-301-1/+1
| | | | | | Will use it for refcounting. https://bugzilla.gnome.org/show_bug.cgi?id=796918
* omxaudiosink: Set port to not flushing in prepare() and keep it at flushing ↵Sebastian Dröge2014-07-201-9/+9
| | | | | | in unprepare() https://bugzilla.gnome.org/show_bug.cgi?id=733168
* omxaudiosink: implement _delay only in the RaspberryPIJosep Torra2014-05-121-0/+4
| | | | | | | | Make code implementation conditionally built for RaspberryPI because OMX_IndexConfigAudioRenderingLatency seems to be a Broadcom extension. On other targets the query position might not be accurate without implementing _delay appropriatelly.
* omxaudiosink: Fix format string compiler warningsSebastian Dröge2014-05-101-7/+7
|
* omxaudiosink: Implements OpenMAX based audio sinksJosep Torra2014-05-091-0/+1224
Provides omxanalogaudiosink and omxhdmiaudiosink elements on the Raspberry PI. - omxanalogaudiosink is capable to render raw mono or stereo audio through the jack output. - omxhdmiaudiosink is capable to render raw audio up to 8 channels and transmit ac3/dts(IEC 61937) through the HDMI output. - sinks provide a clock derived from rendered samples - sinks support the GstStreamVolume interface by implementing the volume and mute properties. https://bugzilla.gnome.org/show_bug.cgi?id=728962