[Bf-blender-cvs] [279edfe4a03] temp-vse-h264-proxy: Revert "VSE: Automatic proxy building"

Richard Antalik noreply at git.blender.org
Tue Mar 16 13:04:13 CET 2021


Commit: 279edfe4a0333913d99bf60cded9b5f085bf3662
Author: Richard Antalik
Date:   Tue Mar 16 12:20:25 2021 +0100
Branches: temp-vse-h264-proxy
https://developer.blender.org/rB279edfe4a0333913d99bf60cded9b5f085bf3662

Revert "VSE: Automatic proxy building"

This reverts commit 74186a51d7a806780669b3c44093282e92bed285.

===================================================================

M	release/datafiles/userdef/userdef_default.c
M	release/scripts/startup/bl_ui/space_userpref.py
M	source/blender/blenloader/intern/versioning_userdef.c
M	source/blender/editors/space_sequencer/sequencer_add.c
M	source/blender/editors/space_sequencer/sequencer_proxy.c
M	source/blender/makesdna/DNA_userdef_types.h
M	source/blender/makesrna/intern/rna_space.c
M	source/blender/makesrna/intern/rna_userdef.c
M	source/blender/sequencer/CMakeLists.txt
M	source/blender/sequencer/SEQ_proxy.h
M	source/blender/sequencer/intern/proxy.c
D	source/blender/sequencer/intern/proxy_job.c

===================================================================

diff --git a/release/datafiles/userdef/userdef_default.c b/release/datafiles/userdef/userdef_default.c
index 6220edce28f..6383d7dfcca 100644
--- a/release/datafiles/userdef/userdef_default.c
+++ b/release/datafiles/userdef/userdef_default.c
@@ -226,7 +226,6 @@ const UserDef U_default = {
     .sequencer_disk_cache_compression = 0,
     .sequencer_disk_cache_size_limit = 100,
     .sequencer_disk_cache_flag = 0,
-    .sequencer_proxy_setup = USER_SEQ_PROXY_SETUP_AUTOMATIC,
 
     .collection_instance_empty_size = 1.0f,
 
diff --git a/release/scripts/startup/bl_ui/space_userpref.py b/release/scripts/startup/bl_ui/space_userpref.py
index bb762db3e93..94a1e2bec4d 100644
--- a/release/scripts/startup/bl_ui/space_userpref.py
+++ b/release/scripts/startup/bl_ui/space_userpref.py
@@ -655,10 +655,6 @@ class USERPREF_PT_system_video_sequencer(SystemPanel, CenterAlignMixIn, Panel):
         col.prop(system, "sequencer_disk_cache_size_limit", text="Cache Limit")
         col.prop(system, "sequencer_disk_cache_compression", text="Compression")
 
-        layout.separator()
-
-        layout.prop(system, "sequencer_proxy_setup")
-
 
 # -----------------------------------------------------------------------------
 # Viewport Panels
diff --git a/source/blender/blenloader/intern/versioning_userdef.c b/source/blender/blenloader/intern/versioning_userdef.c
index 0716226893b..3d39181cd32 100644
--- a/source/blender/blenloader/intern/versioning_userdef.c
+++ b/source/blender/blenloader/intern/versioning_userdef.c
@@ -857,8 +857,6 @@ void blo_do_versions_userdef(UserDef *userdef)
     if (userdef->gizmo_size_navigate_v3d == 0) {
       userdef->gizmo_size_navigate_v3d = 80;
     }
-
-    userdef->sequencer_proxy_setup = USER_SEQ_PROXY_SETUP_AUTOMATIC;
   }
 
   LISTBASE_FOREACH (bTheme *, btheme, &userdef->themes) {
diff --git a/source/blender/editors/space_sequencer/sequencer_add.c b/source/blender/editors/space_sequencer/sequencer_add.c
index eee3981e494..037ce78b9a2 100644
--- a/source/blender/editors/space_sequencer/sequencer_add.c
+++ b/source/blender/editors/space_sequencer/sequencer_add.c
@@ -29,7 +29,6 @@
 #include "MEM_guardedalloc.h"
 
 #include "BLI_blenlib.h"
-#include "BLI_ghash.h"
 #include "BLI_math.h"
 #include "BLI_utildefines.h"
 
@@ -38,10 +37,8 @@
 #include "DNA_mask_types.h"
 #include "DNA_scene_types.h"
 #include "DNA_sound_types.h"
-#include "DNA_space_types.h"
 
 #include "BKE_context.h"
-#include "BKE_global.h"
 #include "BKE_lib_id.h"
 #include "BKE_main.h"
 #include "BKE_mask.h"
@@ -58,7 +55,6 @@
 
 #include "SEQ_add.h"
 #include "SEQ_effects.h"
-#include "SEQ_proxy.h"
 #include "SEQ_relations.h"
 #include "SEQ_render.h"
 #include "SEQ_select.h"
@@ -552,57 +548,6 @@ static bool sequencer_add_draw_check_fn(PointerRNA *UNUSED(ptr),
   return !(STR_ELEM(prop_id, "filepath", "directory", "filename"));
 }
 
-/* Strips are added in context of timeline which has different preview size than actual preview. We
- * must search for preview area. In most cases there will be only one preview area, but there can
- * be more with different preview sizes. */
-static IMB_Proxy_Size seq_get_proxy_size_flags(bContext *C)
-{
-  bScreen *screen = CTX_wm_screen(C);
-  IMB_Proxy_Size proxy_sizes = 0;
-  LISTBASE_FOREACH (ScrArea *, area, &screen->areabase) {
-    LISTBASE_FOREACH (SpaceLink *, sl, &area->spacedata) {
-      switch (sl->spacetype) {
-        case SPACE_SEQ: {
-          SpaceSeq *sseq = (SpaceSeq *)sl;
-          if (!ELEM(sseq->view, SEQ_VIEW_PREVIEW, SEQ_VIEW_SEQUENCE_PREVIEW)) {
-            continue;
-          }
-          proxy_sizes |= SEQ_rendersize_to_proxysize(sseq->render_size);
-        }
-      }
-    }
-  }
-  return proxy_sizes;
-}
-
-static void seq_build_proxy(bContext *C, Sequence *seq)
-{
-  if (!ELEM(U.sequencer_proxy_setup,
-            USER_SEQ_PROXY_SETUP_ONLY_STRIP_ADD,
-            USER_SEQ_PROXY_SETUP_AUTOMATIC)) {
-    return;
-  }
-
-  /* Enable and set proxy size. */
-  SEQ_proxy_set(seq, true);
-  seq->strip->proxy->build_size_flags = seq_get_proxy_size_flags(C);
-  seq->strip->proxy->build_flags |= SEQ_PROXY_SKIP_EXISTING;
-
-  /* Build proxy. */
-  GSet *file_list = BLI_gset_new(BLI_ghashutil_strhash_p, BLI_ghashutil_strcmp, "file list");
-  wmJob *wm_job = ED_seq_proxy_wm_job_get(C);
-  ProxyJob *pj = ED_seq_proxy_job_get(C, wm_job);
-  SEQ_proxy_rebuild_context(pj->main, pj->depsgraph, pj->scene, seq, file_list, &pj->queue);
-  BLI_gset_free(file_list, MEM_freeN);
-
-  if (!WM_jobs_is_running(wm_job)) {
-    G.is_break = false;
-    WM_jobs_start(CTX_wm_manager(C), wm_job);
-  }
-
-  ED_area_tag_redraw(CTX_wm_area(C));
-}
-
 static void sequencer_add_movie_multiple_strips(bContext *C,
                                                 wmOperator *op,
                                                 SeqLoadData *load_data)
@@ -633,7 +578,6 @@ static void sequencer_add_movie_multiple_strips(bContext *C,
       load_data->start_frame += seq_movie->enddisp - seq_movie->startdisp;
       seq_load_apply_generic_options(C, op, seq_sound);
       seq_load_apply_generic_options(C, op, seq_movie);
-      seq_build_proxy(C, seq_movie);
     }
   }
   RNA_END;
@@ -660,7 +604,6 @@ static bool sequencer_add_movie_single_strip(bContext *C, wmOperator *op, SeqLoa
   }
   seq_load_apply_generic_options(C, op, seq_sound);
   seq_load_apply_generic_options(C, op, seq_movie);
-  seq_build_proxy(C, seq_movie);
 
   return true;
 }
@@ -981,7 +924,9 @@ static int sequencer_add_image_strip_calculate_length(wmOperator *op,
   if (use_placeholders) {
     return sequencer_image_seq_get_minmax_frame(op, start_frame, minframe, numdigits);
   }
-  return RNA_property_collection_length(op->ptr, RNA_struct_find_property(op->ptr, "files"));
+  else {
+    return RNA_property_collection_length(op->ptr, RNA_struct_find_property(op->ptr, "files"));
+  }
 }
 
 static void sequencer_add_image_strip_load_files(
diff --git a/source/blender/editors/space_sequencer/sequencer_proxy.c b/source/blender/editors/space_sequencer/sequencer_proxy.c
index e44afde371a..24fa4ad7a17 100644
--- a/source/blender/editors/space_sequencer/sequencer_proxy.c
+++ b/source/blender/editors/space_sequencer/sequencer_proxy.c
@@ -49,25 +49,98 @@
 /* Own include. */
 #include "sequencer_intern.h"
 
-/* -------------------------------------------------------------------- */
-/** \name Rebuild Proxy and Timecode Indices Operator
+/*--------------------------------------------------------------------*/
+/** \name Proxy Job Manager
  * \{ */
 
+typedef struct ProxyBuildJob {
+  struct Main *main;
+  struct Depsgraph *depsgraph;
+  Scene *scene;
+  ListBase queue;
+  int stop;
+} ProxyJob;
+
+static void proxy_freejob(void *pjv)
+{
+  ProxyJob *pj = pjv;
+
+  BLI_freelistN(&pj->queue);
+
+  MEM_freeN(pj);
+}
+
+/* Only this runs inside thread. */
+static void proxy_startjob(void *pjv, short *stop, short *do_update, float *progress)
+{
+  ProxyJob *pj = pjv;
+  LinkData *link;
+
+  for (link = pj->queue.first; link; link = link->next) {
+    struct SeqIndexBuildContext *context = link->data;
+
+    SEQ_proxy_rebuild(context, stop, do_update, progress);
+
+    if (*stop) {
+      pj->stop = 1;
+      fprintf(stderr, "Canceling proxy rebuild on users request...\n");
+      break;
+    }
+  }
+}
+
+static void proxy_endjob(void *pjv)
+{
+  ProxyJob *pj = pjv;
+  Editing *ed = SEQ_editing_get(pj->scene, false);
+  LinkData *link;
+
+  for (link = pj->queue.first; link; link = link->next) {
+    SEQ_proxy_rebuild_finish(link->data, pj->stop);
+  }
+
+  SEQ_relations_free_imbuf(pj->scene, &ed->seqbase, false);
+
+  WM_main_add_notifier(NC_SCENE | ND_SEQUENCER, pj->scene);
+}
+
 static void seq_proxy_build_job(const bContext *C, ReportList *reports)
 {
+  wmJob *wm_job;
+  ProxyJob *pj;
+  struct Depsgraph *depsgraph = CTX_data_depsgraph_pointer(C);
   Scene *scene = CTX_data_scene(C);
   Editing *ed = SEQ_editing_get(scene, false);
   ScrArea *area = CTX_wm_area(C);
   Sequence *seq;
+  GSet *file_list;
 
   if (ed == NULL) {
     return;
   }
 
-  wmJob *wm_job = ED_seq_proxy_wm_job_get(C);
-  ProxyJob *pj = ED_seq_proxy_job_get(C, wm_job);
+  wm_job = WM_jobs_get(CTX_wm_manager(C),
+                       CTX_wm_window(C),
+                       scene,
+                       "Building Proxies",
+                       WM_JOB_PROGRESS,
+                       WM_JOB_TYPE_SEQ_BUILD_PROXY);
+
+  pj = WM_jobs_customdata_get(wm_job);
+
+  if (!pj) {
+    pj = MEM_callocN(sizeof(ProxyJob), "proxy rebuild job");
+
+    pj->depsgraph = depsgraph;
+    pj->scene = scene;
+    pj->main = CTX_data_main(C);
 
-  GSet *file_list = BLI_gset_new(BLI_ghashutil_strhash_p, BLI_ghashutil_strcmp, "file list");
+    WM_jobs_customdata_set(wm_job, pj, proxy_freejob);
+    WM_jobs_timer(wm_job, 0.1, NC_SCENE | ND_SEQUENCER, NC_SCENE | ND_SEQUENCER);
+    WM_jobs_callbacks(wm_job, proxy_startjob, NULL, NULL, proxy_endjob);
+  }
+
+  file_list = BLI_gset_new(BLI_ghashutil_strhash_p, BLI_ghashutil_strcmp, "file list");
   bool selected = false; /* Check for no selected strips */
 
   SEQ_CURRENT_BEGIN (ed, seq) {
@@ -109,6 +182,12 @@ static void seq_proxy_build_job(const bContext *C, ReportList *reports)
   ED_area_tag_redraw(area);
 }
 
+/** \} */
+
+/* -------------------------------------------------------------------- */
+/** \name Rebuild Proxy and Timecode Indices Operator
+ * \{ */
+
 static int sequencer_rebuild_proxy_invoke(bContext *C,
                                           wmOperator *op,
                                           const wmEvent *UNUSED(event))
diff --git a/source/blender/makesdna/DNA_userdef_types.h b/source/blender/makesdna/DNA_userdef_types.h
index cce2ad02ee0..d304641e112 100644
--- a/source/blender/makesdna/DNA_userdef_types.h
+++ b/source/blender/makesdna/DNA_userdef_types.h
@@ -919,7 +919,7 @@ typedef struct UserDef {
   int sequencer_disk_cache_compression; /* eUserpref_DiskCacheCompression */
   int sequencer_disk_cache_size_limit;
   short sequencer_disk_cache_flag;
-  short sequencer_proxy_setup; /* eUserpref_SeqProxySetup */
+  char _pad5[2];
 
   float collection_instance_empty_size;
   char _pad10[3];
@@ -1384,12 +1384,6 @@ typedef enum eUserpref_DiskCacheCompression {


@@ Diff output truncated at 10240 characters. @@



More information about the Bf-blender-cvs mailing list