[FFmpeg-cvslog] r23262 - trunk/libavfilter/vf_scale.c
stefano
subversion
Sun May 23 21:11:43 CEST 2010
Author: stefano
Date: Sun May 23 21:11:43 2010
New Revision: 23262
Log:
Prefix value for flags with "0x", to make it clear that it is an
hexadecimal value.
Modified:
trunk/libavfilter/vf_scale.c
Modified: trunk/libavfilter/vf_scale.c
==============================================================================
--- trunk/libavfilter/vf_scale.c Sun May 23 20:50:15 2010 (r23261)
+++ trunk/libavfilter/vf_scale.c Sun May 23 21:11:43 2010 (r23262)
@@ -128,7 +128,7 @@ static int config_props(AVFilterLink *ou
outlink->h = h;
/* TODO: make algorithm configurable */
- av_log(ctx, AV_LOG_INFO, "w:%d h:%d fmt:%s -> w:%d h:%d fmt:%s flags:%0x\n",
+ av_log(ctx, AV_LOG_INFO, "w:%d h:%d fmt:%s -> w:%d h:%d fmt:%s flags:0x%0x\n",
inlink ->w, inlink ->h, av_pix_fmt_descriptors[ inlink->format].name,
outlink->w, outlink->h, av_pix_fmt_descriptors[outlink->format].name,
scale->flags);
More information about the ffmpeg-cvslog
mailing list