mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-25 01:30:38 +00:00
rtph263pay: fix warning on macosx
This commit is contained in:
parent
c3d3eb6c3b
commit
a1fbe64317
1 changed files with 1 additions and 1 deletions
|
@ -708,7 +708,7 @@ gst_rtp_h263_pay_gobfinder (GstRtpH263Pay * rtph263pay,
|
|||
if ((current[i] == 0x0) &&
|
||||
(current[i + 1] == 0x0) && (current[i + 2] >> 7 == 0x1)) {
|
||||
GST_LOG ("GOB end found at: %p start: %p len: %d", current + i - 1,
|
||||
boundry->end + 1, current + i - boundry->end + 2);
|
||||
boundry->end + 1, (gint) (current + i - boundry->end + 2));
|
||||
gst_rtp_h263_pay_boundry_init (boundry, boundry->end + 1,
|
||||
current + i - 1, 0, 0);
|
||||
|
||||
|
|
Loading…
Reference in a new issue