[asterisk-commits] rizzo: branch rizzo/video_v2 r84156 - /team/rizzo/video_v2/channels/
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Oct 1 08:27:22 CDT 2007
Author: rizzo
Date: Mon Oct 1 08:27:21 2007
New Revision: 84156
URL: http://svn.digium.com/view/asterisk?view=rev&rev=84156
Log:
remove a too-verbose debugging message
Modified:
team/rizzo/video_v2/channels/console_video.c
Modified: team/rizzo/video_v2/channels/console_video.c
URL: http://svn.digium.com/view/asterisk/team/rizzo/video_v2/channels/console_video.c?view=diff&rev=84156&r1=84155&r2=84156
==============================================================================
--- team/rizzo/video_v2/channels/console_video.c (original)
+++ team/rizzo/video_v2/channels/console_video.c Mon Oct 1 08:27:21 2007
@@ -895,9 +895,9 @@
ast_log(LOG_ERROR, "FFMPEG::convert_cmodel : swscale context initialization failed");
return;
}
-ast_log(LOG_WARNING, "in %d %dx%d out %d %dx%d\n",
- in->pix_fmt, in->w, in->h,
- out->pix_fmt, out->w, out->h);
+ if (0)
+ ast_log(LOG_WARNING, "in %d %dx%d out %d %dx%d\n",
+ in->pix_fmt, in->w, in->h, out->pix_fmt, out->w, out->h);
sws_scale(convert_ctx,
p_in->data, p_in->linesize,
in->w, in->h, /* src slice */
More information about the asterisk-commits
mailing list