comparison avutil.h @ 707:3138bb2c6780 libavutil

Change the RGB5X5/BGR5X5 pixel format defines so that we have little endian and big endian variants instead of native-endian ones. This patch breaks API/ABI backward-compatibility.
author stefano
date Sat, 21 Mar 2009 23:08:20 +0000
parents 588652a81abe
children 2cd525e90b45
comparison
equal deleted inserted replaced
706:40979c781a28 707:3138bb2c6780
33 #define AV_VERSION_INT(a, b, c) (a<<16 | b<<8 | c) 33 #define AV_VERSION_INT(a, b, c) (a<<16 | b<<8 | c)
34 #define AV_VERSION_DOT(a, b, c) a ##.## b ##.## c 34 #define AV_VERSION_DOT(a, b, c) a ##.## b ##.## c
35 #define AV_VERSION(a, b, c) AV_VERSION_DOT(a, b, c) 35 #define AV_VERSION(a, b, c) AV_VERSION_DOT(a, b, c)
36 36
37 #define LIBAVUTIL_VERSION_MAJOR 50 37 #define LIBAVUTIL_VERSION_MAJOR 50
38 #define LIBAVUTIL_VERSION_MINOR 0 38 #define LIBAVUTIL_VERSION_MINOR 1
39 #define LIBAVUTIL_VERSION_MICRO 0 39 #define LIBAVUTIL_VERSION_MICRO 0
40 40
41 #define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \ 41 #define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \
42 LIBAVUTIL_VERSION_MINOR, \ 42 LIBAVUTIL_VERSION_MINOR, \
43 LIBAVUTIL_VERSION_MICRO) 43 LIBAVUTIL_VERSION_MICRO)