~ubuntu-branches/debian/sid/ffmpeg/sid

« back to all changes in this revision

Viewing changes to libavcodec/version.h

  • Committer: Package Import Robot
  • Author(s): Andreas Cadhalpun, Fabian Greffrath, Andreas Cadhalpun
  • Date: 2015-09-22 15:15:20 UTC
  • mfrom: (0.1.29)
  • Revision ID: package-import@ubuntu.com-20150922151520-hhmd3in9ykigjvs9
Tags: 7:2.8-1
[ Fabian Greffrath ]
* Pass the --dbg-package=ffmpeg-dbg parameter only to dh_strip.
* Add alternative Depends: libavcodec-ffmpeg-extra56 to libavcodec-dev and
  ffmpeg-dbg to allow for building and debugging with this library installed.

[ Andreas Cadhalpun ]
* Import new major upstream release 2.8.
* Remove the transitional lib*-ffmpeg-dev packages.
* Drop old Breaks on kodi-bin.
* Drop workaround for sparc, which is no Debian architecture anymore.
* Re-enable x265 on alpha, as it's available again.
* Disable unavailable frei0r, opencv and x264 on mips64el.
* Disable libopenjpeg (#787275) and libschroedinger (#787957) decoders.
  (Closes: #786670)
* Disable libdc1394 on sparc64, because it links against the broken due to
  #790560 libudev1.
* Enable libsnappy support.
* Add new symbols.
* Update debian/copyright.
* Update debian/tests/encdec_list.txt.
* Add hls-only-seek-if-there-is-an-offset.patch. (Closes: #798189)
* Add 'Breaks: libavutil-ffmpeg54 (>= 8:0)' to the libraries.

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
#include "libavutil/version.h"
30
30
 
31
31
#define LIBAVCODEC_VERSION_MAJOR 56
32
 
#define LIBAVCODEC_VERSION_MINOR  41
 
32
#define LIBAVCODEC_VERSION_MINOR 60
33
33
#define LIBAVCODEC_VERSION_MICRO 100
34
34
 
35
35
#define LIBAVCODEC_VERSION_INT  AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
46
46
 * FF_API_* defines may be placed below to indicate public API that will be
47
47
 * dropped at a future version bump. The defines themselves are not part of
48
48
 * the public API and may change, break or disappear at any time.
 
49
 *
 
50
 * @note, when bumping the major version it is recommended to manually
 
51
 * disable each FF_API_* in its own commit instead of disabling them all
 
52
 * at once through the bump. This improves the git bisect-ability of the change.
49
53
 */
50
54
 
51
55
#ifndef FF_API_VIMA_DECODER
181
185
#ifndef FF_API_AUDIOENC_DELAY
182
186
#define FF_API_AUDIOENC_DELAY    (LIBAVCODEC_VERSION_MAJOR < 58)
183
187
#endif
 
188
#ifndef FF_API_VAAPI_CONTEXT
 
189
#define FF_API_VAAPI_CONTEXT     (LIBAVCODEC_VERSION_MAJOR < 58)
 
190
#endif
184
191
#ifndef FF_API_AVCTX_TIMEBASE
185
192
#define FF_API_AVCTX_TIMEBASE    (LIBAVCODEC_VERSION_MAJOR < 59)
186
193
#endif
190
197
#ifndef FF_API_STREAM_CODEC_TAG
191
198
#define FF_API_STREAM_CODEC_TAG  (LIBAVCODEC_VERSION_MAJOR < 59)
192
199
#endif
 
200
#ifndef FF_API_QUANT_BIAS
 
201
#define FF_API_QUANT_BIAS        (LIBAVCODEC_VERSION_MAJOR < 59)
 
202
#endif
 
203
#ifndef FF_API_RC_STRATEGY
 
204
#define FF_API_RC_STRATEGY       (LIBAVCODEC_VERSION_MAJOR < 59)
 
205
#endif
 
206
#ifndef FF_API_CODED_FRAME
 
207
#define FF_API_CODED_FRAME       (LIBAVCODEC_VERSION_MAJOR < 59)
 
208
#endif
 
209
#ifndef FF_API_MOTION_EST
 
210
#define FF_API_MOTION_EST        (LIBAVCODEC_VERSION_MAJOR < 59)
 
211
#endif
 
212
#ifndef FF_API_WITHOUT_PREFIX
 
213
#define FF_API_WITHOUT_PREFIX    (LIBAVCODEC_VERSION_MAJOR < 59)
 
214
#endif
193
215
 
194
216
#endif /* AVCODEC_VERSION_H */