<html><head></head><body>This is not expansion-safe. No please.<br><br><div class="gmail_quote">Le 11 janvier 2020 04:05:04 GMT+09:00, Marvin Scholz <epirat07@gmail.com> a écrit :<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
<pre class="k9mail"><hr> include/vlc_common.h | 7 +++++++<br> 1 file changed, 7 insertions(+)<br><br>diff --git a/include/vlc_common.h b/include/vlc_common.h<br>index e4c5cd85c9..66b7df8644 100644<br>--- a/include/vlc_common.h<br>+++ b/include/vlc_common.h<br>@@ -548,6 +548,13 @@ typedef int ( * vlc_list_callback_t ) ( vlc_object_t *,      /* variable's objec<br> /* clip v in [min, max] */<br> #define VLC_CLIP(v, min, max)    __MIN(__MAX((v), (min)), (max))<br> <br>+/** <br>+ * Make integer v a multiple of align<br>+ * <br>+ * \note align must be a power of 2<br>+ */<br>+#define VLC_ALIGN(v, align) (((v) + ((align) - 1)) & ~((align) - 1))<br>+<br> /** Greatest common divisor */<br> VLC_USED<br> static inline int64_t GCD ( int64_t a, int64_t b )</pre></blockquote></div><br>-- <br>Envoyé de mon appareil Android avec Courriel K-9 Mail. Veuillez excuser ma brièveté.</body></html>