Browse Source

Show underscores in av_get_codec_tag_string().

tags/n1.1
Carl Eugen Hoyos 13 years ago
parent
commit
ec4a084581
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/utils.c

+ 1
- 1
libavcodec/utils.c View File

@@ -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,


Loading…
Cancel
Save