Show hyphen in codec tag.

This commit is contained in:
Carl Eugen Hoyos 2012-07-09 13:46:55 +02:00
parent 07df939aa3
commit 36b2bd9629

View File

@ -1826,7 +1826,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) == '-'))
for (i = 0; i < 4; i++) {
len = snprintf(buf, buf_size,