diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2007-04-07 22:57:04 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2007-04-07 22:57:04 +0000 |
commit | 905234285d234533bf2d35526d9faf901203e721 (patch) | |
tree | 499ca89e8c7ce4d517337a876dfa029914f7cffe | |
parent | 8bb57775e82903fdf98abf9f5e17743439e1e594 (diff) | |
download | ffmpeg-905234285d234533bf2d35526d9faf901203e721.tar.gz |
code claims to use 32bit timestamp, lets make it also use that
Originally committed as revision 8662 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/bethsoftvid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/bethsoftvid.c b/libavformat/bethsoftvid.c index 7eebcc2821..df338906c8 100644 --- a/libavformat/bethsoftvid.c +++ b/libavformat/bethsoftvid.c @@ -40,7 +40,7 @@ typedef struct BVID_DemuxContext /** video presentation time stamp. * delay = 16 milliseconds * (global_delay + per_frame_delay) */ - int64_t video_pts; + int video_pts; int is_finished; |