mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 03:01:03 +00:00
audio-buffer: fix typo in assignment that causes buggy behavior
This commit is contained in:
parent
0ce20cef4f
commit
ab2548d78d
1 changed files with 1 additions and 1 deletions
|
@ -163,7 +163,7 @@ gst_audio_buffer_map (GstAudioBuffer * buffer, const GstAudioInfo * info,
|
|||
flags))
|
||||
goto cannot_map;
|
||||
|
||||
buffer->planes[i] = buffer->map_infos[0].data + skip;
|
||||
buffer->planes[i] = buffer->map_infos[i].data + skip;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue