[SCM] libav/experimental: INT MIN/MAX patch by (Bohdan Horst <nexus at irc dot pl>)

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 15:42:01 UTC 2013


The following commit has been merged in the experimental branch:
commit cc044c1cc02c375fdb8f5446c656924a7362103e
Author: Bohdan Horst <nexus at irc.pl>
Date:   Sun Oct 24 13:20:32 2004 +0000

    INT MIN/MAX patch by (Bohdan Horst <nexus at irc dot pl>)
    
    Originally committed as revision 3632 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavcodec/common.h b/libavcodec/common.h
index b87feb0..0fa3f6e 100644
--- a/libavcodec/common.h
+++ b/libavcodec/common.h
@@ -112,6 +112,18 @@ extern const struct AVOption avoptions_workaround_bug[11];
 #   endif /* other OS */
 #endif /* HAVE_INTTYPES_H */
 
+#ifndef INT16_MIN
+#define INT16_MIN       (-0x7fff-1)
+#endif
+
+#ifndef INT16_MAX
+#define INT16_MAX       0x7fff
+#endif
+
+#ifndef INT64_MIN
+#define INT64_MIN       (-0x7fffffffffffffffLL-1)
+#endif
+
 #ifndef INT64_MAX
 #define INT64_MAX int64_t_C(9223372036854775807)
 #endif

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list