OSDN Git Service

Merge commit 'b83d1ee3b41cfe8357836e2582104db2f3364cb0'
authorMichael Niedermayer <michaelni@gmx.at>
Fri, 27 Dec 2013 11:01:23 +0000 (12:01 +0100)
committerMichael Niedermayer <michaelni@gmx.at>
Fri, 27 Dec 2013 11:01:23 +0000 (12:01 +0100)
* commit 'b83d1ee3b41cfe8357836e2582104db2f3364cb0':
  avutil: Move library version related macros to version.h

Conflicts:
libavcodec/version.h
libavresample/version.h
libavutil/avutil.h
libavutil/utils.c

See: 183117fed7d0a910b5f65e5c78b065f125abf369
Merged-by: Michael Niedermayer <michaelni@gmx.at>
1  2 
libavcodec/version.h
libavdevice/version.h
libavfilter/version.h
libavformat/version.h
libavresample/version.h
libavutil/utils.c
libavutil/version.h
libswscale/version.h

   * Libavcodec version macros.
   */
  
- #include "libavutil/avutil.h"
+ #include "libavutil/version.h"
  
  #define LIBAVCODEC_VERSION_MAJOR 55
 -#define LIBAVCODEC_VERSION_MINOR 31
 -#define LIBAVCODEC_VERSION_MICRO  0
 +#define LIBAVCODEC_VERSION_MINOR  46
 +#define LIBAVCODEC_VERSION_MICRO 100
  
  #define LIBAVCODEC_VERSION_INT  AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
                                                 LIBAVCODEC_VERSION_MINOR, \
   * Libavdevice version macros
   */
  
- #include "libavutil/avutil.h"
+ #include "libavutil/version.h"
  
 -#define LIBAVDEVICE_VERSION_MAJOR 54
 -#define LIBAVDEVICE_VERSION_MINOR  0
 -#define LIBAVDEVICE_VERSION_MICRO  0
 +#define LIBAVDEVICE_VERSION_MAJOR  55
 +#define LIBAVDEVICE_VERSION_MINOR   5
 +#define LIBAVDEVICE_VERSION_MICRO 102
  
  #define LIBAVDEVICE_VERSION_INT AV_VERSION_INT(LIBAVDEVICE_VERSION_MAJOR, \
                                                 LIBAVDEVICE_VERSION_MINOR, \
   * Libavfilter version macros
   */
  
- #include "libavutil/avutil.h"
+ #include "libavutil/version.h"
  
 -#define LIBAVFILTER_VERSION_MAJOR  4
 -#define LIBAVFILTER_VERSION_MINOR  0
 -#define LIBAVFILTER_VERSION_MICRO  0
 +#define LIBAVFILTER_VERSION_MAJOR   4
 +#define LIBAVFILTER_VERSION_MINOR   0
 +#define LIBAVFILTER_VERSION_MICRO 103
  
  #define LIBAVFILTER_VERSION_INT AV_VERSION_INT(LIBAVFILTER_VERSION_MAJOR, \
                                                 LIBAVFILTER_VERSION_MINOR, \
   * Libavformat version macros
   */
  
- #include "libavutil/avutil.h"
+ #include "libavutil/version.h"
  
  #define LIBAVFORMAT_VERSION_MAJOR 55
 -#define LIBAVFORMAT_VERSION_MINOR 10
 -#define LIBAVFORMAT_VERSION_MICRO  1
 +#define LIBAVFORMAT_VERSION_MINOR 22
 +#define LIBAVFORMAT_VERSION_MICRO 100
  
  #define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \
                                                 LIBAVFORMAT_VERSION_MINOR, \
Simple merge
   */
  
  #include "config.h"
- #include "avutil.h"
+ #include "version.h"
 +#include "avassert.h"
 +#include "samplefmt.h"
 +#include "pixdesc.h"
  
  /**
   * @file
  #ifndef AVUTIL_VERSION_H
  #define AVUTIL_VERSION_H
  
 -#include "avutil.h"
 +/**
 + * @defgroup preproc_misc Preprocessor String Macros
 + *
 + * String manipulation macros
 + *
 + * @{
 + */
 +
 +#define AV_STRINGIFY(s)         AV_TOSTRING(s)
 +#define AV_TOSTRING(s) #s
 +
 +#define AV_GLUE(a, b) a ## b
 +#define AV_JOIN(a, b) AV_GLUE(a, b)
 +
 +#define AV_PRAGMA(s) _Pragma(#s)
 +
 +/**
 + * @}
 + */
 +
  /**
   * @defgroup version_utils Library Version Macros
   *
   * swscale version macros
   */
  
- #include "libavutil/avutil.h"
+ #include "libavutil/version.h"
  
  #define LIBSWSCALE_VERSION_MAJOR 2
 -#define LIBSWSCALE_VERSION_MINOR 1
 -#define LIBSWSCALE_VERSION_MICRO 2
 +#define LIBSWSCALE_VERSION_MINOR 5
 +#define LIBSWSCALE_VERSION_MICRO 101
  
  #define LIBSWSCALE_VERSION_INT  AV_VERSION_INT(LIBSWSCALE_VERSION_MAJOR, \
                                                 LIBSWSCALE_VERSION_MINOR, \