summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2012-12-19 10:01:07 +0100
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2012-12-19 10:01:07 +0100
commitec4a084581f78fa758803c6e128376d49b66a735 (patch)
tree814129e96b1799d8c5cf57fe8994826ec61610a5
parentc5d7c7d33bb90223a057a3b7909681e34890b43e (diff)
Show underscores in av_get_codec_tag_string().
-rw-r--r--libavcodec/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c
index abd930d746..c8c7c4786b 100644
--- a/libavcodec/utils.c
+++ b/libavcodec/utils.c
@@ -2014,7 +2014,7 @@ size_t av_get_codec_tag_string(char *buf, size_t buf_size, unsigned int codec_ta
#define IS_PRINT(x) \
(((x) >= '0' && (x) <= '9') || \
((x) >= 'a' && (x) <= 'z') || ((x) >= 'A' && (x) <= 'Z') || \
- ((x) == '.' || (x) == ' ' || (x) == '-'))
+ ((x) == '.' || (x) == ' ' || (x) == '-' || (x) == '_'))
for (i = 0; i < 4; i++) {
len = snprintf(buf, buf_size,