Commit ff27cfb9 authored by stefano's avatar stefano

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

hexadecimal value.

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@23262 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent b80935c9
...@@ -128,7 +128,7 @@ static int config_props(AVFilterLink *outlink) ...@@ -128,7 +128,7 @@ static int config_props(AVFilterLink *outlink)
outlink->h = h; outlink->h = h;
/* TODO: make algorithm configurable */ /* 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, inlink ->w, inlink ->h, av_pix_fmt_descriptors[ inlink->format].name,
outlink->w, outlink->h, av_pix_fmt_descriptors[outlink->format].name, outlink->w, outlink->h, av_pix_fmt_descriptors[outlink->format].name,
scale->flags); scale->flags);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment