mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 12:09:55 +00:00
showfiltfmts: use av_get_pix_fmt_name()
Use av_get_pix_fmt_name() rather than access av_pix_fmt_descriptors. Improve readability.
This commit is contained in:
parent
40da61eff5
commit
4ae28eb853
@ -81,7 +81,7 @@ int main(int argc, char **argv)
|
|||||||
for (j = 0; j < fmts->format_count; j++)
|
for (j = 0; j < fmts->format_count; j++)
|
||||||
printf("INPUT[%d] %s: %s\n",
|
printf("INPUT[%d] %s: %s\n",
|
||||||
i, filter_ctx->filter->inputs[i].name,
|
i, filter_ctx->filter->inputs[i].name,
|
||||||
av_pix_fmt_descriptors[fmts->formats[j]].name);
|
av_get_pix_fmt_name(fmts->formats[j]));
|
||||||
}
|
}
|
||||||
|
|
||||||
/* print the supported formats in output */
|
/* print the supported formats in output */
|
||||||
@ -90,7 +90,7 @@ int main(int argc, char **argv)
|
|||||||
for (j = 0; j < fmts->format_count; j++)
|
for (j = 0; j < fmts->format_count; j++)
|
||||||
printf("OUTPUT[%d] %s: %s\n",
|
printf("OUTPUT[%d] %s: %s\n",
|
||||||
i, filter_ctx->filter->outputs[i].name,
|
i, filter_ctx->filter->outputs[i].name,
|
||||||
av_pix_fmt_descriptors[fmts->formats[j]].name);
|
av_get_pix_fmt_name(fmts->formats[j]));
|
||||||
}
|
}
|
||||||
|
|
||||||
avfilter_free(filter_ctx);
|
avfilter_free(filter_ctx);
|
||||||
|
Loading…
Reference in New Issue
Block a user