]> git.sesse.net Git - vlc/commitdiff
Remove misleading comment
authorRémi Denis-Courmont <rdenis@simphalempin.com>
Wed, 23 Jul 2008 19:01:00 +0000 (22:01 +0300)
committerRémi Denis-Courmont <rdenis@simphalempin.com>
Wed, 23 Jul 2008 19:02:00 +0000 (22:02 +0300)
Funky byte sexes are supported here.
However they are not supported by VLC_FOURCC.

include/vlc_common.h

index cf504c62633d7815171268922c1fb6fc400447e6..1e7bbf16b622677f1cde6b7d65eede018a8b1594 100644 (file)
@@ -621,9 +621,7 @@ VLC_EXPORT( char const *, vlc_error, ( int ) );
 #include <vlc_arrays.h>
 
 /* MSB (big endian)/LSB (little endian) conversions - network order is always
- * MSB, and should be used for both network communications and files. Note that
- * byte orders other than little and big endians are not supported, but only
- * the VAX seems to have such exotic properties. */
+ * MSB, and should be used for both network communications and files. */
 static inline uint16_t U16_AT( const void * _p )
 {
     const uint8_t * p = (const uint8_t *)_p;