Browse Source

INT64_MIN fix

Originally committed as revision 2820 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer 22 years ago
parent
commit
71141d771a
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/avcodec.h

+ 1
- 1
libavcodec/avcodec.h View File

@@ -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 {


Loading…
Cancel
Save