comparison avutil.h @ 923:13c95c3e8449 libavutil

Make it possible for a log context to keep track of its parent context. This is usefull to keep track and display relations where things are a bit more complex (like AVProtocols or demuxers used by demuxers and such)
author michael
date Wed, 19 May 2010 22:50:39 +0000
parents 3ab411c447c4
children c2a912cceb52
comparison
equal deleted inserted replaced
922:2acb0b1891c0 923:13c95c3e8449
39 #define AV_VERSION_DOT(a, b, c) a ##.## b ##.## c 39 #define AV_VERSION_DOT(a, b, c) a ##.## b ##.## c
40 #define AV_VERSION(a, b, c) AV_VERSION_DOT(a, b, c) 40 #define AV_VERSION(a, b, c) AV_VERSION_DOT(a, b, c)
41 41
42 #define LIBAVUTIL_VERSION_MAJOR 50 42 #define LIBAVUTIL_VERSION_MAJOR 50
43 #define LIBAVUTIL_VERSION_MINOR 15 43 #define LIBAVUTIL_VERSION_MINOR 15
44 #define LIBAVUTIL_VERSION_MICRO 2 44 #define LIBAVUTIL_VERSION_MICRO 3
45 45
46 #define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \ 46 #define LIBAVUTIL_VERSION_INT AV_VERSION_INT(LIBAVUTIL_VERSION_MAJOR, \
47 LIBAVUTIL_VERSION_MINOR, \ 47 LIBAVUTIL_VERSION_MINOR, \
48 LIBAVUTIL_VERSION_MICRO) 48 LIBAVUTIL_VERSION_MICRO)
49 #define LIBAVUTIL_VERSION AV_VERSION(LIBAVUTIL_VERSION_MAJOR, \ 49 #define LIBAVUTIL_VERSION AV_VERSION(LIBAVUTIL_VERSION_MAJOR, \