[vlc-devel] commit: rawaud: default FOURCC with local rather than low endianess ( Rémi Denis-Courmont )
jpd at m2x.nl
jpd at m2x.nl
Wed May 20 22:57:02 CEST 2009
On Wed, May 20, 2009 18:53, git version control wrote:
> #define FOURCC_TEXT N_("FOURCC code of raw input format")
> #define FOURCC_LONGTEXT N_( \
> - "FOURCC code of the raw input format. This is a four character string.
> Default is s16l." )
> + "FOURCC code of the raw input format. This is a four character string."
> )
> +#ifdef WORDS_BIGENDIAN
> +# define FOURCC_DEFAULT "s16b"
> +#else
> +# define FOURCC_DEFAULT "s16l"
> +#endif
Would there be anything against doing the following?
#define FOURCC_LONGTEXT N_( \
"FOURCC code of the raw input format. This is a four character string." \
"Default is" FOURCC_DEFAULT "." )
More information about the vlc-devel
mailing list