Skip to content

Commit

Permalink
revert log changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ddennedy committed May 6, 2024
1 parent ef36d29 commit 0aa2781
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
10 changes: 5 additions & 5 deletions src/modules/movit/filter_movit_convert.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -332,11 +332,11 @@ static void finalize_movit_chain(mlt_service leaf_service, mlt_frame frame, mlt_

// Build the chain if needed.
if (!chain || new_fingerprint != chain->fingerprint) {
mlt_log_info(leaf_service,
"=== CREATING NEW CHAIN (old chain=%p, leaf=%p, fingerprint=%s) ===\n",
chain,
leaf_service,
new_fingerprint.c_str());
mlt_log_debug(leaf_service,
"=== CREATING NEW CHAIN (old chain=%p, leaf=%p, fingerprint=%s) ===\n",
chain,
leaf_service,
new_fingerprint.c_str());
mlt_profile profile = mlt_service_profile(leaf_service);
chain = new GlslChain;
chain->effect_chain = new EffectChain(profile->display_aspect_num,
Expand Down
1 change: 0 additions & 1 deletion src/modules/qt/filter_qtext.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,6 @@ static int filter_get_image(mlt_frame frame,
mlt_properties filter_properties = get_filter_properties(filter, frame);
mlt_profile profile = mlt_service_profile(MLT_FILTER_SERVICE(filter));
mlt_position position = mlt_filter_get_position(filter, frame);
mlt_log_info(MLT_FILTER_SERVICE(filter), "get_image %p %d\n", filter, position);
mlt_position length = mlt_filter_get_length2(filter, frame);
bool isRichText = qstrlen(mlt_properties_get(filter_properties, "html")) > 0
|| qstrlen(mlt_properties_get(filter_properties, "resource")) > 0;
Expand Down

0 comments on commit 0aa2781

Please sign in to comment.