~ubuntu-branches/debian/experimental/libav/experimental

« back to all changes in this revision

Viewing changes to libavutil/avutil.h

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2014-01-18 15:46:55 UTC
  • mfrom: (1.1.24)
  • Revision ID: package-import@ubuntu.com-20140118154655-iz6u00yevkat1jqi
Tags: 6:10~alpha2-1
New Upstream release 10_alpha2. This upstream git snapshot has too many
changes to list here, cf. to the upstream Changelog:
http://git.libav.org/?p=libav.git;a=blob;f=Changelog;hb=refs/tags/v10_alpha2

Show diffs side-by-side

added added

removed removed

Lines of Context:
144
144
 * @{
145
145
 *
146
146
 * @}
147
 
 */
148
 
 
149
 
 
150
 
/**
 
147
 *
151
148
 * @defgroup preproc_misc Preprocessor String Macros
152
149
 *
153
 
 * String manipulation macros
154
 
 *
155
 
 * @{
156
 
 */
157
 
 
158
 
#define AV_STRINGIFY(s)         AV_TOSTRING(s)
159
 
#define AV_TOSTRING(s) #s
160
 
 
161
 
#define AV_GLUE(a, b) a ## b
162
 
#define AV_JOIN(a, b) AV_GLUE(a, b)
163
 
 
164
 
#define AV_PRAGMA(s) _Pragma(#s)
165
 
 
166
 
/**
167
 
 * @}
168
 
 */
169
 
 
170
 
/**
171
 
 * @defgroup version_utils Library Version Macros
172
 
 *
173
 
 * Useful to check and match library version in order to maintain
174
 
 * backward compatibility.
175
 
 *
176
 
 * @{
177
 
 */
178
 
 
179
 
#define AV_VERSION_INT(a, b, c) (a<<16 | b<<8 | c)
180
 
#define AV_VERSION_DOT(a, b, c) a ##.## b ##.## c
181
 
#define AV_VERSION(a, b, c) AV_VERSION_DOT(a, b, c)
182
 
 
183
 
/**
184
 
 * @}
185
 
 */
 
150
 * @{
 
151
 *
 
152
 * @}
 
153
 */
 
154
 
186
155
 
187
156
/**
188
157
 * @addtogroup lavu_ver
305
274
 
306
275
#include "error.h"
307
276
#include "version.h"
 
277
#include "macros.h"
308
278
 
309
279
/**
310
280
 * @}