mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 08:46:40 +00:00
pulsesrc: Don't use memset to set invalid channel positions
This itereates over the GstAudioInfo to set invalid channel positions rather than use memset() which works right now because it assumes that GST_AUDIO_CHANNEL_POSITION_INVALID is -1.
This commit is contained in:
parent
2c69684b80
commit
fe83843abe
1 changed files with 3 additions and 1 deletions
|
@ -1144,6 +1144,7 @@ gst_pulsesrc_create_stream (GstPulseSrc * pulsesrc, GstCaps ** caps)
|
|||
gboolean need_channel_layout = FALSE;
|
||||
GstAudioRingBufferSpec spec;
|
||||
const gchar *name;
|
||||
int i;
|
||||
|
||||
s = gst_caps_get_structure (*caps, 0);
|
||||
gst_structure_get_int (s, "channels", &spec.info.channels);
|
||||
|
@ -1175,7 +1176,8 @@ gst_pulsesrc_create_stream (GstPulseSrc * pulsesrc, GstCaps ** caps)
|
|||
need_channel_layout = TRUE;
|
||||
gst_structure_set (s, "channel-mask", GST_TYPE_BITMASK,
|
||||
G_GUINT64_CONSTANT (0), NULL);
|
||||
memset (spec.info.position, 0xff, sizeof (spec.info.position));
|
||||
for (i = 0; i < G_N_ELEMENTS (spec.info.position); i++)
|
||||
spec.info.position[i] = GST_AUDIO_CHANNEL_POSITION_INVALID;
|
||||
}
|
||||
|
||||
if (!gst_pulse_fill_sample_spec (&spec, &pulsesrc->sample_spec))
|
||||
|
|
Loading…
Reference in a new issue