diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-03-09 21:54:25 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-03-09 21:54:25 +0000 |
commit | 4bfc029f83491437fc3300703ea5851d2c5355ab (patch) | |
tree | 2d97c4fc31fc91a65351be8422ee515d44195e79 /libavformat | |
parent | 92a267756f4294f3a026171fd9298b56aa3bf6ea (diff) | |
download | ffmpeg-4bfc029f83491437fc3300703ea5851d2c5355ab.tar.gz |
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')
-rw-r--r-- | libavformat/movenc.c | 2 |
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); } |