Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Bœsch <u@pkh.me>2014-12-20 02:17:43 +0300
committerClément Bœsch <u@pkh.me>2014-12-20 02:17:43 +0300
commitedbbb11488e1fce9b9703535936d2e1731e2e318 (patch)
treec133045ca240b79c0033ac156e0839aaf59fb064 /libavformat/rsd.c
parentd60fb4f7946272d2ef39703762b54c5f3a1b5789 (diff)
avformat/rsd: make tag_buf string larger
av_get_codec_tag_string() uses more that 1 char for unprintable characters.
Diffstat (limited to 'libavformat/rsd.c')
-rw-r--r--libavformat/rsd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rsd.c b/libavformat/rsd.c
index bb2f3bc7a2..1eff5de7e6 100644
--- a/libavformat/rsd.c
+++ b/libavformat/rsd.c
@@ -70,7 +70,7 @@ static int rsd_read_header(AVFormatContext *s)
codec->codec_tag = avio_rl32(pb);
codec->codec_id = ff_codec_get_id(rsd_tags, codec->codec_tag);
if (!codec->codec_id) {
- char tag_buf[5];
+ char tag_buf[32];
av_get_codec_tag_string(tag_buf, sizeof(tag_buf), codec->codec_tag);
for (i=0; i < FF_ARRAY_ELEMS(rsd_unsupported_tags); i++) {