vlc | branch: master | Rémi Denis-Courmont <[email protected]> | Thu Nov 15 21:59:58 2012 +0200| [9da30f1afb6300829c353d898646e2f7693d5ad7] | committer: Rémi Denis-Courmont
Add missing VLC_CODEC_U(24|32)(N|I) definitions > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=9da30f1afb6300829c353d898646e2f7693d5ad7 --- include/vlc_fourcc.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/include/vlc_fourcc.h b/include/vlc_fourcc.h index 23a91e2..e2a3d47 100644 --- a/include/vlc_fourcc.h +++ b/include/vlc_fourcc.h @@ -369,27 +369,35 @@ # define VLC_CODEC_S16N VLC_CODEC_S16B # define VLC_CODEC_U16N VLC_CODEC_U16B # define VLC_CODEC_S24N VLC_CODEC_S24B +# define VLC_CODEC_U24N VLC_CODEC_U24B # define VLC_CODEC_S32N VLC_CODEC_S32B +# define VLC_CODEC_U32N VLC_CODEC_U32B # define VLC_CODEC_FL32 VLC_CODEC_F32B # define VLC_CODEC_FL64 VLC_CODEC_F64B # define VLC_CODEC_S16I VLC_CODEC_S16L # define VLC_CODEC_U16I VLC_CODEC_U16L # define VLC_CODEC_S24I VLC_CODEC_S24L +# define VLC_CODEC_U24I VLC_CODEC_U24L # define VLC_CODEC_S32I VLC_CODEC_S32L +# define VLC_CODEC_U32I VLC_CODEC_U32L #else # define VLC_CODEC_S16N VLC_CODEC_S16L # define VLC_CODEC_U16N VLC_CODEC_U16L # define VLC_CODEC_S24N VLC_CODEC_S24L +# define VLC_CODEC_U24N VLC_CODEC_U24L # define VLC_CODEC_S32N VLC_CODEC_S32L +# define VLC_CODEC_U32N VLC_CODEC_U32L # define VLC_CODEC_FL32 VLC_CODEC_F32L # define VLC_CODEC_FL64 VLC_CODEC_F64L # define VLC_CODEC_S16I VLC_CODEC_S16B # define VLC_CODEC_U16I VLC_CODEC_U16B # define VLC_CODEC_S24I VLC_CODEC_S24B +# define VLC_CODEC_U24I VLC_CODEC_U24B # define VLC_CODEC_S32I VLC_CODEC_S32B +# define VLC_CODEC_U32I VLC_CODEC_U32B #endif /* Non official codecs, used to force a profile in an encoder */ _______________________________________________ vlc-commits mailing list [email protected] http://mailman.videolan.org/listinfo/vlc-commits
