Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2011-11-08 14:17:50 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2011-11-08 14:17:50 +0400
commite0030d6c1c8c7ff15de2da6b3834958762a20c42 (patch)
treea237271f43be6e8d5eb6855fb3484af5689fd617 /source/blender/imbuf
parentd1067a2711a4b49b9ae9d5aaf827c802cca822cd (diff)
- Fixed typo in KLT description tooltip
- Fixed inconsistent data type used for pts number in ffmpeg_fetchibuf and stored in timecode structure. Not really issue for "correct" movie files, but probably can help for "broken" one
Diffstat (limited to 'source/blender/imbuf')
-rw-r--r--source/blender/imbuf/intern/anim_movie.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/imbuf/intern/anim_movie.c b/source/blender/imbuf/intern/anim_movie.c
index 3adb9a3791f..09b79e51648 100644
--- a/source/blender/imbuf/intern/anim_movie.c
+++ b/source/blender/imbuf/intern/anim_movie.c
@@ -890,7 +890,7 @@ static int ffmpeg_seek_by_byte(AVFormatContext *pFormatCtx)
static ImBuf * ffmpeg_fetchibuf(struct anim * anim, int position,
IMB_Timecode_Type tc) {
- int64_t pts_to_search = 0;
+ unsigned long long pts_to_search = 0;
double frame_rate;
double pts_time_base;
long long st_time;