Commit 59a3b6b7 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec_string: remove the "(hq)" listing

printing "hq" depending on a single video encoding parameter makes
little sense
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent a0575522
......@@ -2505,8 +2505,8 @@ void avcodec_string(char *buf, int buf_size, AVCodecContext *enc, int encode)
profile = av_get_profile_name(p, enc->profile);
}
snprintf(buf, buf_size, "%s: %s%s", codec_type ? codec_type : "unknown",
codec_name, enc->mb_decision ? " (hq)" : "");
snprintf(buf, buf_size, "%s: %s", codec_type ? codec_type : "unknown",
codec_name);
buf[0] ^= 'a' ^ 'A'; /* first letter in uppercase */
if (profile)
snprintf(buf + strlen(buf), buf_size - strlen(buf), " (%s)", profile);
......
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