OSDN Git Service

Merge remote-tracking branch 'qatar/master'
authorMichael Niedermayer <michaelni@gmx.at>
Wed, 10 Aug 2011 14:29:46 +0000 (16:29 +0200)
committerMichael Niedermayer <michaelni@gmx.at>
Wed, 10 Aug 2011 14:29:51 +0000 (16:29 +0200)
* qatar/master:
  lavc: make avcodec_init() static on next bump.
  ac3enc: remove unneeded #include
  ac3enc: restructure coupling coordinate reuse calculation
  ac3enc: allow new coupling coordinates to be sent independently for each channel.
  ac3enc: separate exponent bit counting from exponent grouping.
  h264: propagate error return values for AV_LOG_ERROR-triggering events
  aac: Don't attempt to output configure an invalid channel configuration.

Merged-by: Michael Niedermayer <michaelni@gmx.at>
1  2 
libavcodec/aacdec.c
libavcodec/ac3enc.c
libavcodec/ac3enc.h
libavcodec/avcodec.h
libavcodec/h264.c
libavcodec/h264_refs.c
libavcodec/utils.c
libavcodec/version.h

Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
@@@ -1141,9 -1062,12 +1141,12 @@@ const char *avcodec_configuration(void
  const char *avcodec_license(void)
  {
  #define LICENSE_PREFIX "libavcodec license: "
 -    return LICENSE_PREFIX LIBAV_LICENSE + sizeof(LICENSE_PREFIX) - 1;
 +    return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;
  }
  
+ #if !FF_API_AVCODEC_INIT
+ static
+ #endif
  void avcodec_init(void)
  {
      static int initialized = 0;
Simple merge