VSE: quiet missing prototype warnings

This commit is contained in:
Jacques Lucke 2019-09-14 16:54:59 +02:00
parent 7aeedf71b8
commit 5055a55bc4
2 changed files with 2 additions and 2 deletions

View File

@ -319,7 +319,7 @@ static void seq_cache_recycle_linked(Scene *scene, SeqCacheKey *base)
}
}
SeqCacheKey *seq_cache_get_item_for_removal(Scene *scene)
static SeqCacheKey *seq_cache_get_item_for_removal(Scene *scene)
{
SeqCache *cache = seq_cache_get_from_scene(scene);
SeqCacheKey *finalkey = NULL;

View File

@ -371,7 +371,7 @@ static void *seq_prefetch_frames(void *job)
return 0;
}
PrefetchJob *seq_prefetch_start(const SeqRenderData *context, float cfra)
static PrefetchJob *seq_prefetch_start(const SeqRenderData *context, float cfra)
{
PrefetchJob *pfjob;
pfjob = seq_prefetch_job_get(context->scene);