diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-07-09 13:46:55 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-07-09 13:46:55 +0200 |
commit | 36b2bd9629fac368b7752937753f74f28116b1f0 (patch) | |
tree | e45784452cef1f591422369395ba72d5b43c5292 /libavcodec | |
parent | 07df939aa32f723deaec80cbfd6526912ee52348 (diff) | |
download | ffmpeg-36b2bd9629fac368b7752937753f74f28116b1f0.tar.gz |
Show hyphen in codec tag.
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c index b3af77d2d0..ddd63db331 100644 --- a/libavcodec/utils.c +++ b/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, |