summaryrefslogtreecommitdiff
path: root/libavformat/movenc.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2004-03-09 21:54:25 +0000
committerMichael Niedermayer <michaelni@gmx.at>2004-03-09 21:54:25 +0000
commit4bfc029f83491437fc3300703ea5851d2c5355ab (patch)
tree2d97c4fc31fc91a65351be8422ee515d44195e79 /libavformat/movenc.c
parent92a267756f4294f3a026171fd9298b56aa3bf6ea (diff)
10l (1 vs. descrLength(1)) found by (Jean Le Feuvre - jeanlf)
Originally committed as revision 2864 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/movenc.c')
-rw-r--r--libavformat/movenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/movenc.c b/libavformat/movenc.c
index c5129ea08d..b46ea5cf74 100644
--- a/libavformat/movenc.c
+++ b/libavformat/movenc.c
@@ -415,7 +415,7 @@ static int mov_write_esds_tag(ByteIOContext *pb, MOVTrack* track) // Basic
}
// SL descriptor
- putDescr(pb, 0x06, descrLength(1));
+ putDescr(pb, 0x06, 1);
put_byte(pb, 0x02);
return updateSize (pb, pos);
}