diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-03-20 16:07:55 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-03-20 16:07:55 +0000 |
commit | eb61405a077744778e763c1b49dee8715547d6bd (patch) | |
tree | 75e42b3444678faf3d232919898640c40ad7e355 | |
parent | f9900374ec9650b4920cac880e15540a951492b6 (diff) | |
download | ffmpeg-eb61405a077744778e763c1b49dee8715547d6bd.tar.gz |
remove useless debug print since now mov_build_index will do
Originally committed as revision 12516 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/mov.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index 75174825f1..16605b75f8 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -1001,10 +1001,8 @@ static int mov_read_stsz(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom) sc->sample_sizes = av_malloc(entries * sizeof(int)); if (!sc->sample_sizes) return -1; - for(i=0; i<entries; i++) { + for(i=0; i<entries; i++) sc->sample_sizes[i] = get_be32(pb); - dprintf(c->fc, "sample_sizes[]=%d\n", sc->sample_sizes[i]); - } return 0; } |