Browse code

Prefix value for flags with "0x", to make it clear that it is an hexadecimal value.

Originally committed as revision 23262 to svn://svn.ffmpeg.org/ffmpeg/trunk

Stefano Sabatini authored on 2010/05/24 04:11:43
Showing 1 changed files
... ...
@@ -128,7 +128,7 @@ static int config_props(AVFilterLink *outlink)
128 128
     outlink->h = h;
129 129
 
130 130
     /* TODO: make algorithm configurable */
131
-    av_log(ctx, AV_LOG_INFO, "w:%d h:%d fmt:%s -> w:%d h:%d fmt:%s flags:%0x\n",
131
+    av_log(ctx, AV_LOG_INFO, "w:%d h:%d fmt:%s -> w:%d h:%d fmt:%s flags:0x%0x\n",
132 132
            inlink ->w, inlink ->h, av_pix_fmt_descriptors[ inlink->format].name,
133 133
            outlink->w, outlink->h, av_pix_fmt_descriptors[outlink->format].name,
134 134
            scale->flags);