Commit eb61405a authored by Baptiste Coudurier's avatar Baptiste Coudurier

remove useless debug print since now mov_build_index will do

Originally committed as revision 12516 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent f9900374
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment