Show hyphen in codec tag.

pull/59/head
Carl Eugen Hoyos 13 years ago
parent 07df939aa3
commit 36b2bd9629
  1. 2
      libavcodec/utils.c

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

Loading…
Cancel
Save