From ec48dacebe925d5f598c244ca0d3db1abdc8e156 Mon Sep 17 00:00:00 2001 From: Martin Piatka Date: Mon, 20 Oct 2025 15:31:19 +0200 Subject: [PATCH] pbuf.h: Add missing include guard --- src/rtp/pbuf.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/rtp/pbuf.h b/src/rtp/pbuf.h index 413a347a7..b99e5a879 100644 --- a/src/rtp/pbuf.h +++ b/src/rtp/pbuf.h @@ -58,6 +58,8 @@ /* The main playout buffer data structures. See "RTP: Audio and Video for the */ /* Internet" Figure 6.8 (page 167) for a diagram. [csp] */ /******************************************************************************/ +#ifndef PBUF_H_071bf2cf5c0c +#define PBUF_H_071bf2cf5c0c #ifdef __cplusplus #include // for size_t @@ -134,3 +136,4 @@ void pbuf_set_playout_delay(struct pbuf *playout_buf, double playout_delay); } #endif +#endif // PBUF_H_071bf2cf5c0c