vlc | branch: master | David Fuhrmann <[email protected]> | Sat Jul 20 10:04:53 2019 +0200| [683a76b6cb7393d758d7493dfbfdf7497cb0e03d] | committer: David Fuhrmann
opengl/converter: Fix include order to make int64 available vlc_common.h includes stdint.h, which is needed for vlc_plugin.h. Also, this orders includes alphabetically. > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=683a76b6cb7393d758d7493dfbfdf7497cb0e03d --- modules/video_output/opengl/converter.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/video_output/opengl/converter.h b/modules/video_output/opengl/converter.h index a84e6c6f4a..73dfabeb71 100644 --- a/modules/video_output/opengl/converter.h +++ b/modules/video_output/opengl/converter.h @@ -21,11 +21,11 @@ #ifndef VLC_OPENGL_CONVERTER_H #define VLC_OPENGL_CONVERTER_H -#include <vlc_plugin.h> #include <vlc_common.h> #include <vlc_codec.h> -#include <vlc_picture_pool.h> #include <vlc_opengl.h> +#include <vlc_picture_pool.h> +#include <vlc_plugin.h> /* if USE_OPENGL_ES2 is defined, OpenGL ES version 2 will be used, otherwise * normal OpenGL will be used */ _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
