From eb61405a077744778e763c1b49dee8715547d6bd Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Thu, 20 Mar 2008 16:07:55 +0000 Subject: [PATCH] remove useless debug print since now mov_build_index will do Originally committed as revision 12516 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/mov.c | 4 +--- 1 file changed, 1 insertion(+), 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; isample_sizes[i] = get_be32(pb); - dprintf(c->fc, "sample_sizes[]=%d\n", sc->sample_sizes[i]); - } return 0; }