mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-30 06:50:44 +00:00
Show hyphen in codec tag.
This commit is contained in:
parent
07df939aa3
commit
36b2bd9629
@ -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…
Reference in New Issue
Block a user