diff options
author | Richard Hodges <rh@matriplex.com> | 2003-04-06 19:45:02 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-04-06 19:45:02 +0000 |
commit | be6784dc8a72f363dd7a577006b5e2d584479483 (patch) | |
tree | 343bd9720cbb015aa50fdf35c03dca5a45851630 /libavcodec | |
parent | 53e27dd5de028b928da22af752bc6020463860ba (diff) | |
download | ffmpeg-be6784dc8a72f363dd7a577006b5e2d584479483.tar.gz |
fix pts type in avcodec.h for WIN32 patch by (Richard Hodges <rh at matriplex dot com>)
Originally committed as revision 1738 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/avcodec.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 60bbbcd6f2..a71c12caca 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -223,7 +223,7 @@ static const int Motion_Est_QTab[] = { ME_ZERO, ME_PHODS, ME_LOG, * - encoding: MUST be set by user\ * - decoding: set by lavc\ */\ - long long int pts;\ + int64_t pts;\ \ /**\ * picture number in bitstream order.\ |