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>2012-03-30 14:37:49 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-03-30 14:37:49 +0400
commit785373b03abd7bfd258a50a0f274c81229fbf98a (patch)
treebc438626382304accf1b1ccb9a29c4a629ffc442 /source/blender/imbuf
parent81e3db364d589d747f17173b79490011d2a403f5 (diff)
Added new command-line arguments --debug-ffmpeg and --debug-libmv to
be able to see debug prints coming from FFmpeg or libmv independently of general blender debug messages.
Diffstat (limited to 'source/blender/imbuf')
-rw-r--r--source/blender/imbuf/intern/util.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/imbuf/intern/util.c b/source/blender/imbuf/intern/util.c
index 008be2fde74..c21c58a114a 100644
--- a/source/blender/imbuf/intern/util.c
+++ b/source/blender/imbuf/intern/util.c
@@ -231,8 +231,7 @@ void do_init_ffmpeg(void)
ffmpeg_init = 1;
av_register_all();
avdevice_register_all();
-
- if ((G.f & G_DEBUG) == 0) {
+ if ((G.f & G_DEBUG_FFMPEG) == 0) {
silence_log_ffmpeg(1);
}
else {