Commit 9d4e4195 authored by bcoudurier's avatar bcoudurier

remove useless debug print since now mov_build_index will do

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12516 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 4bd600c5
......@@ -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