Skip to content
Snippets Groups Projects
Commit e335065a authored by Jean-Marc Valin's avatar Jean-Marc Valin
Browse files

passing self_delimited flag to opus_packet_parse_impl() in decoder

parent 40f956ee
No related branches found
No related tags found
No related merge requests found
......@@ -649,7 +649,7 @@ int opus_decode_native(OpusDecoder *st, const unsigned char *data,
st->frame_size = opus_packet_get_samples_per_frame(data, st->Fs);
st->stream_channels = opus_packet_get_nb_channels(data);
count = opus_packet_parse_impl(data, len, 0, &toc, NULL, size, &offset);
count = opus_packet_parse_impl(data, len, self_delimited, &toc, NULL, size, &offset);
if (count < 0)
return count;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment