ffmpeg | branch: master | Kacper Michajłow <kaspe...@gmail.com> | Mon Mar 31 14:02:37 2025 +0200| [26807592e12546daecd97296711c745c9eeaa688] | committer: Martin Storsjö
avformat/internal: add missing __clang__ check Clang x86_64-pc-windows-msvc doesn't define __GNUC__. Signed-off-by: Kacper Michajłow <kaspe...@gmail.com> Signed-off-by: Martin Storsjö <mar...@martin.st> > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=26807592e12546daecd97296711c745c9eeaa688 --- libavformat/internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/internal.h b/libavformat/internal.h index fe428d85eb..bf83571430 100644 --- a/libavformat/internal.h +++ b/libavformat/internal.h @@ -354,7 +354,7 @@ static av_always_inline const FFStream *cffstream(const AVStream *st) return (const FFStream*)st; } -#ifdef __GNUC__ +#if defined (__GNUC__) || defined (__clang__) #define dynarray_add(tab, nb_ptr, elem)\ do {\ __typeof__(tab) _tab = (tab);\ _______________________________________________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog To unsubscribe, visit link above, or email ffmpeg-cvslog-requ...@ffmpeg.org with subject "unsubscribe".