diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-06-21 18:13:34 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-06-24 07:54:29 +0200 |
commit | a7b8ff94b19732012549c745e2be3a4b1e2cb872 (patch) | |
tree | ec4fb9d61a0f296b90900ccfc3fe612e1d896f1c /libavformat/mov.c | |
parent | f57d2f587b0b424cd81178f76885ac5117ebe16f (diff) | |
download | ffmpeg-a7b8ff94b19732012549c745e2be3a4b1e2cb872.tar.gz |
mov: make a length variable larger.
Right now, it's uint16_t, but for itunes metadata a 32bit number is
stored in it.
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r-- | libavformat/mov.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index 63c79cd002..fa70eff66f 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -172,8 +172,8 @@ static int mov_read_udta_string(MOVContext *c, AVIOContext *pb, MOVAtom atom) #endif char str[1024], key2[16], language[4] = {0}; const char *key = NULL; - uint16_t str_size, langcode = 0; - uint32_t data_type = 0; + uint16_t langcode = 0; + uint32_t data_type = 0, str_size; int (*parse)(MOVContext*, AVIOContext*, unsigned, const char*) = NULL; switch (atom.type) { |