summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2008-04-25 16:52:30 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2008-04-25 16:52:30 +0000
commiteb034aca18f00e6bf82ee37c470177b57b697bf1 (patch)
tree99d1240e127108418f15d4864d629a506b2b1a86 /libavformat
parent43612ffe25f54f122562723765dacc362f51d287 (diff)
yes it is true for mp4
Originally committed as revision 12972 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/mov.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index 8afd6cff69..9406c4e108 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -747,7 +747,7 @@ static int mov_read_stsd(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
get_be32(pb); /* data size, always 0 */
get_be16(pb); /* frames per samples */
- get_buffer(pb, codec_name, 32); /* codec name, pascal string (FIXME: true for mp4?) */
+ get_buffer(pb, codec_name, 32); /* codec name, pascal string */
if (codec_name[0] <= 31) {
memcpy(st->codec->codec_name, &codec_name[1],codec_name[0]);
st->codec->codec_name[codec_name[0]] = 0;