Commit ec4a0845 authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

Show underscores in av_get_codec_tag_string().

parent c5d7c7d3
...@@ -2014,7 +2014,7 @@ size_t av_get_codec_tag_string(char *buf, size_t buf_size, unsigned int codec_ta ...@@ -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) \ #define IS_PRINT(x) \
(((x) >= '0' && (x) <= '9') || \ (((x) >= '0' && (x) <= '9') || \
((x) >= 'a' && (x) <= 'z') || ((x) >= 'A' && (x) <= 'Z') || \ ((x) >= 'a' && (x) <= 'z') || ((x) >= 'A' && (x) <= 'Z') || \
((x) == '.' || (x) == ' ' || (x) == '-')) ((x) == '.' || (x) == ' ' || (x) == '-' || (x) == '_'))
for (i = 0; i < 4; i++) { for (i = 0; i < 4; i++) {
len = snprintf(buf, buf_size, len = snprintf(buf, buf_size,
......
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