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; }