mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
avtp: Build with clang
Minor non-conformity on AVTP code made it not compile with clang.
This commit is contained in:
parent
f1976e0de5
commit
916966606b
1 changed files with 2 additions and 3 deletions
|
@ -295,9 +295,8 @@ gst_avtp_aaf_depay_chain (GstPad * pad, GstObject * parent, GstBuffer * buffer)
|
|||
goto discard;
|
||||
|
||||
if (seqnum != avtpbasedepayload->seqnum) {
|
||||
GST_INFO_OBJECT (avtpaafdepay, "Sequence number mismatch: expected %"
|
||||
G_GUINT16_FORMAT " received %" G_GUINT64_FORMAT,
|
||||
avtpbasedepayload->seqnum, seqnum);
|
||||
GST_INFO_OBJECT (avtpaafdepay, "Sequence number mismatch: expected %u"
|
||||
" received %" G_GUINT64_FORMAT, avtpbasedepayload->seqnum, seqnum);
|
||||
avtpbasedepayload->seqnum = seqnum;
|
||||
}
|
||||
avtpbasedepayload->seqnum++;
|
||||
|
|
Loading…
Reference in a new issue