forked from FFmpeg/FFmpeg
10l in code reading codec_name, the first byte is the length and should not
become part of the string. Originally committed as revision 20102 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
5baaf9adaf
commit
f2ad907060
1 changed files with 1 additions and 1 deletions
|
@ -913,7 +913,7 @@ static int mov_read_stsd(MOVContext *c, ByteIOContext *pb, MOVAtom atom)
|
||||||
int pos = 0;
|
int pos = 0;
|
||||||
for (i = 0; i < codec_name[0] && pos < sizeof(st->codec->codec_name) - 3; i++) {
|
for (i = 0; i < codec_name[0] && pos < sizeof(st->codec->codec_name) - 3; i++) {
|
||||||
uint8_t tmp;
|
uint8_t tmp;
|
||||||
PUT_UTF8(codec_name[i], tmp, st->codec->codec_name[pos++] = tmp;)
|
PUT_UTF8(codec_name[i+1], tmp, st->codec->codec_name[pos++] = tmp;)
|
||||||
}
|
}
|
||||||
st->codec->codec_name[pos] = 0;
|
st->codec->codec_name[pos] = 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue