summaryrefslogtreecommitdiff
path: root/libavcodec/raw.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefasab@gmail.com>2012-09-06 16:16:11 +0200
committerStefano Sabatini <stefasab@gmail.com>2012-09-06 23:39:57 +0200
commit144caa7280aaa3e20d527938d07468d076586df5 (patch)
treee29a02a5cc203d48bf55cb5b38cb382440f04e78 /libavcodec/raw.c
parentda2ea7c33c8138a6908dd2c3619532d121d3560f (diff)
lavc/raw-test: invert the order of key/value when printing the fourcc->pix_fmt map
Print FOURCC: PIX_FMT rather than PIX_FMT: FOURCC This seems more consistent with the help message: -l list the pixel format for each fourcc Remove possibly redundant/confusing comment.
Diffstat (limited to 'libavcodec/raw.c')
-rw-r--r--libavcodec/raw.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/raw.c b/libavcodec/raw.c
index 2cc69a6e8d..0475cd29a8 100644
--- a/libavcodec/raw.c
+++ b/libavcodec/raw.c
@@ -251,12 +251,11 @@ int main(int argc, char **argv)
}
if (list_fourcc_pix_fmt) {
- /* print a list of pixel format / fourcc */
for (i = 0; i < FF_ARRAY_ELEMS(ff_raw_pix_fmt_tags); i++) {
char buf[32];
av_get_codec_tag_string(buf, sizeof(buf), ff_raw_pix_fmt_tags[i].fourcc);
if (ff_raw_pix_fmt_tags[i].pix_fmt != PIX_FMT_NONE)
- printf("%s: %s\n", av_get_pix_fmt_name(ff_raw_pix_fmt_tags[i].pix_fmt), buf);
+ printf("%s: %s\n", buf, av_get_pix_fmt_name(ff_raw_pix_fmt_tags[i].pix_fmt));
}
}