mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
rtpj2kpay: fix compiler warning on OS/X
gstrtpj2kpay.c:364:21: error: implicit truncation from 'int' to bitfield changes value from -1 to 65535 https://bugzilla.gnome.org/show_bug.cgi?id=767817
This commit is contained in:
parent
3172a5d6d0
commit
323244bc04
1 changed files with 1 additions and 1 deletions
|
@ -361,7 +361,7 @@ gst_rtp_j2k_pay_handle_buffer (GstRTPBasePayload * basepayload,
|
|||
state.header.mh_id = 0; /* always 0 for now */
|
||||
state.header.T = 1; /* invalid tile, because we always begin with the main header */
|
||||
state.header.priority = 255; /* always 255 for now */
|
||||
state.header.tile = -1; /* no tile number */
|
||||
state.header.tile = 0xffff; /* no tile number */
|
||||
state.header.offset = 0; /* offset of 0 */
|
||||
state.multi_tile_part = FALSE;
|
||||
state.bitstream = FALSE;
|
||||
|
|
Loading…
Reference in a new issue