summaryrefslogtreecommitdiff
path: root/libswscale/swscale.h
diff options
context:
space:
mode:
authorReinhard Tartler <siretart@tauware.de>2011-06-20 12:20:54 +0200
committerReinhard Tartler <siretart@tauware.de>2011-06-20 18:01:39 +0200
commit07935318598722e6ffe0f9980010a96f076d7152 (patch)
tree8e0e8670f595b50fb5bbbc1e911f8df9b2941135 /libswscale/swscale.h
parentea6331f8bbaf3343faec6ffe77a6218a016a3af5 (diff)
Bump major version for b8e893399ff8755721dc117695ec5ff183c1e07b
On architectures such as x86 (both 32 bit and 64bit), the stack element size is fixed, which maintains alignment. Here, this change does not break anything. However, we also support also other architectures where this property is not maintained and therefore, applications will crash horribly. This change effectively forces all applications to be recompiled against libswscale.
Diffstat (limited to 'libswscale/swscale.h')
-rw-r--r--libswscale/swscale.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libswscale/swscale.h b/libswscale/swscale.h
index b0ad912a08..2aa5e50ab2 100644
--- a/libswscale/swscale.h
+++ b/libswscale/swscale.h
@@ -29,8 +29,8 @@
#include "libavutil/avutil.h"
-#define LIBSWSCALE_VERSION_MAJOR 1
-#define LIBSWSCALE_VERSION_MINOR 1
+#define LIBSWSCALE_VERSION_MAJOR 2
+#define LIBSWSCALE_VERSION_MINOR 0
#define LIBSWSCALE_VERSION_MICRO 0
#define LIBSWSCALE_VERSION_INT AV_VERSION_INT(LIBSWSCALE_VERSION_MAJOR, \
@@ -48,10 +48,10 @@
* They may change, break or disappear at any time.
*/
#ifndef FF_API_SWS_GETCONTEXT
-#define FF_API_SWS_GETCONTEXT (LIBSWSCALE_VERSION_MAJOR < 2)
+#define FF_API_SWS_GETCONTEXT (LIBSWSCALE_VERSION_MAJOR < 3)
#endif
#ifndef FF_API_SWS_CPU_CAPS
-#define FF_API_SWS_CPU_CAPS (LIBSWSCALE_VERSION_MAJOR < 2)
+#define FF_API_SWS_CPU_CAPS (LIBSWSCALE_VERSION_MAJOR < 3)
#endif
/**