mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
osxaudiosink: Specify endianness in IEC 61937 payloading
Corresponds to an API change in gst-plugins-base. This needs to be fixed to query the expected byte order using appropriate API. https://bugzilla.gnome.org/show_bug.cgi?id=678021
This commit is contained in:
parent
333d568ec7
commit
c9821d31f8
1 changed files with 2 additions and 1 deletions
|
@ -397,9 +397,10 @@ gst_osx_audio_sink_sink_payload (GstBaseAudioSink * sink, GstBuffer * buf)
|
|||
|
||||
out = gst_buffer_new_and_alloc (framesize);
|
||||
|
||||
/* FIXME: the endianness needs to be queried and then set */
|
||||
if (!gst_audio_iec61937_payload (GST_BUFFER_DATA (buf),
|
||||
GST_BUFFER_SIZE (buf), GST_BUFFER_DATA (out),
|
||||
GST_BUFFER_SIZE (out), &sink->ringbuffer->spec)) {
|
||||
GST_BUFFER_SIZE (out), &sink->ringbuffer->spec, G_BYTE_ORDER)) {
|
||||
gst_buffer_unref (out);
|
||||
return NULL;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue