mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-08 06:09:50 +00:00
Show underscores in av_get_codec_tag_string().
This commit is contained in:
parent
c5d7c7d33b
commit
ec4a084581
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue