mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-04 07:09:56 +00:00
celtdepay: calculate size correctly
The summation was done wrong, causing the de-payloader to exit its loop too early, before all frames are processed. Fixes https://bugzilla.gnome.org/show_bug.cgi?id=674472
This commit is contained in:
parent
373333c2b3
commit
e0945d0a2d
1 changed files with 1 additions and 1 deletions
|
@ -247,7 +247,7 @@ gst_rtp_celt_depay_process (GstRTPBaseDepayload * depayload, GstBuffer * buf)
|
|||
do {
|
||||
s = payload[pos++];
|
||||
size += s;
|
||||
total_size += size + 1;
|
||||
total_size += s + 1;
|
||||
} while (s == 0xff);
|
||||
|
||||
outbuf = gst_rtp_buffer_get_payload_subbuffer (&rtp, offset, size);
|
||||
|
|
Loading…
Reference in a new issue