Browse Source

movdec: remove nonsensical snprintf.

Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
tags/n2.4
Reimar Döffinger 11 years ago
parent
commit
1c84aad718
1 changed files with 1 additions and 3 deletions
  1. +1
    -3
      libavformat/mov.c

+ 1
- 3
libavformat/mov.c View File

@@ -119,15 +119,13 @@ static int mov_metadata_gnre(MOVContext *c, AVIOContext *pb,
unsigned len, const char *key)
{
short genre;
char buf[20];

avio_r8(pb); // unknown

genre = avio_r8(pb);
if (genre < 1 || genre > ID3v1_GENRE_MAX)
return 0;
snprintf(buf, sizeof(buf), "%s", ff_id3v1_genre_str[genre-1]);
av_dict_set(&c->fc->metadata, key, buf, 0);
av_dict_set(&c->fc->metadata, key, ff_id3v1_genre_str[genre-1], 0);

return 0;
}


Loading…
Cancel
Save