Mercurial > libavformat.hg
changeset 3156:487b1979f195 libavformat
remove useless debug print since now mov_build_index will do
author | bcoudurier |
---|---|
date | Thu, 20 Mar 2008 16:07:55 +0000 |
parents | e22efe21156d |
children | 27c5bc69a1f9 |
files | mov.c |
diffstat | 1 files changed, 1 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/mov.c Thu Mar 20 16:00:45 2008 +0000 +++ b/mov.c Thu Mar 20 16:07:55 2008 +0000 @@ -1001,10 +1001,8 @@ 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; }