summaryrefslogtreecommitdiff
path: root/libavcodec
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-08-27 22:02:45 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-08-31 17:00:00 +0200
commit336982a0ce1594eaac0679c553a313466f2ea6ab (patch)
tree81d84efd83885b476fa2d11dc0e7fc9191a20de1 /libavcodec
parent4fa00c567cd561f55e839ff187783c79a9ccae78 (diff)
avcodec/utils: avcodec_string: make the colorspace printing code more extendible.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/utils.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c
index 4dbd834136..842740c245 100644
--- a/libavcodec/utils.c
+++ b/libavcodec/utils.c
@@ -2591,13 +2591,17 @@ void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
switch (enc->codec_type) {
case AVMEDIA_TYPE_VIDEO:
if (enc->pix_fmt != AV_PIX_FMT_NONE) {
+ char detail[256] = "(";
snprintf(buf + strlen(buf), buf_size - strlen(buf),
", %s",
av_get_pix_fmt_name(enc->pix_fmt));
if (enc->bits_per_raw_sample &&
enc->bits_per_raw_sample <= av_pix_fmt_desc_get(enc->pix_fmt)->comp[0].depth_minus1)
- snprintf(buf + strlen(buf), buf_size - strlen(buf),
- " (%d bpc)", enc->bits_per_raw_sample);
+ av_strlcatf(detail, sizeof(detail), "%d bpc, ", enc->bits_per_raw_sample);
+ if (strlen(detail) > 1) {
+ detail[strlen(detail) - 2] = 0;
+ av_strlcatf(buf, buf_size, "%s)", detail);
+ }
}
if (enc->width) {
snprintf(buf + strlen(buf), buf_size - strlen(buf),