1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-04 22:03:09 +02:00

avformat/whip: Constify arguments in is_rtp_rtcp/is_rtcp

Fix warning of -Wincompatible-pointer-types-discards-qualifiers.

Signed-off-by: Zhao Zhili <zhilizhao@tencent.com>
This commit is contained in:
Zhao Zhili
2025-06-05 17:41:32 +08:00
parent 1af6881ba1
commit 153cdf3142

View File

@ -1115,13 +1115,13 @@ static int ice_is_binding_response(uint8_t *b, int size)
* The RTCP packet header is similar to RTP, * The RTCP packet header is similar to RTP,
* see https://www.rfc-editor.org/rfc/rfc3550#section-6.4.1 * see https://www.rfc-editor.org/rfc/rfc3550#section-6.4.1
*/ */
static int media_is_rtp_rtcp(uint8_t *b, int size) static int media_is_rtp_rtcp(const uint8_t *b, int size)
{ {
return size >= WHIP_RTP_HEADER_SIZE && (b[0] & 0xC0) == 0x80; return size >= WHIP_RTP_HEADER_SIZE && (b[0] & 0xC0) == 0x80;
} }
/* Whether the packet is RTCP. */ /* Whether the packet is RTCP. */
static int media_is_rtcp(uint8_t *b, int size) static int media_is_rtcp(const uint8_t *b, int size)
{ {
return size >= WHIP_RTP_HEADER_SIZE && b[1] >= WHIP_RTCP_PT_START && b[1] <= WHIP_RTCP_PT_END; return size >= WHIP_RTP_HEADER_SIZE && b[1] >= WHIP_RTCP_PT_START && b[1] <= WHIP_RTCP_PT_END;
} }