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@blender.org>2020-11-30 17:50:21 +0300
committerSergey Sharybin <sergey@blender.org>2020-11-30 17:50:21 +0300
commitf280300b6ac9a6cacfc91bee79ac7a10bd048d39 (patch)
treea4161f4cbec28900f6ecbd77b7a84b517fed26ff /source/blender/blenkernel/intern/tracking_auto.c
parentba3bf822a1edb10cec02a36a79170902a86a2eef (diff)
Tracking: Cleanup, remove unused argument from image accessor
Diffstat (limited to 'source/blender/blenkernel/intern/tracking_auto.c')
-rw-r--r--source/blender/blenkernel/intern/tracking_auto.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/tracking_auto.c b/source/blender/blenkernel/intern/tracking_auto.c
index 0bbfa4d6d8e..d49d6779d64 100644
--- a/source/blender/blenkernel/intern/tracking_auto.c
+++ b/source/blender/blenkernel/intern/tracking_auto.c
@@ -395,7 +395,7 @@ AutoTrackContext *BKE_autotrack_context_new(MovieClip *clip,
"auto track pointers");
/* Initialize image accessor. */
context->image_accessor = tracking_image_accessor_new(
- context->clips, 1, context->input_tracks, num_total_tracks, user->framenr);
+ context->clips, 1, context->input_tracks, num_total_tracks);
/* Initialize auto track context and provide all information about currently
* tracked markers.
*/