summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2004-02-26 15:15:05 +0000
committerMichael Niedermayer <michaelni@gmx.at>2004-02-26 15:15:05 +0000
commit71141d771a03942ebe6ed71f09f4d610ddec0202 (patch)
tree0f1716bcecf7d500317b0a6e442a3d37fdeed707
parent9d5277ce32da2e8cae64bc873d7cd1c078f5551d (diff)
INT64_MIN fix
Originally committed as revision 2820 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavcodec/avcodec.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index f406829134..cf43a8bfb5 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -26,7 +26,7 @@ extern "C" {
#define AV_TOSTRING(s) #s
#define LIBAVCODEC_IDENT "FFmpeg" LIBAVCODEC_VERSION "b" AV_STRINGIFY(LIBAVCODEC_BUILD)
-#define AV_NOPTS_VALUE INT64_MIN
+#define AV_NOPTS_VALUE 0x8000000000000000LL
#define AV_TIME_BASE 1000000
enum CodecID {