diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-05-20 02:24:02 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-05-20 02:24:02 +0000 |
commit | 585dac65dba487b764fe136640da3e7573f75151 (patch) | |
tree | b490b5ee7b36c8c6d29fba6ab935c680fb1cfa11 | |
parent | 285a3da9bd27f1ecf9e0b22ee56779575cd67447 (diff) | |
download | ffmpeg-585dac65dba487b764fe136640da3e7573f75151.tar.gz |
only print debug info when sample is actually added
Originally committed as revision 13202 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/mov.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c index 2f7a9c73b5..1369839d6a 100644 --- a/libavformat/mov.c +++ b/libavformat/mov.c @@ -1175,13 +1175,14 @@ static void mov_build_index(MOVContext *mov, AVStream *st) stss_index++; } sample_size = sc->sample_size > 0 ? sc->sample_size : sc->sample_sizes[current_sample]; - dprintf(mov->fc, "AVIndex stream %d, sample %d, offset %"PRIx64", dts %"PRId64", " - "size %d, distance %d, keyframe %d\n", st->index, current_sample, - current_offset, current_dts, sample_size, distance, keyframe); if(sc->pseudo_stream_id == -1 || - sc->sample_to_chunk[stsc_index].id - 1 == sc->pseudo_stream_id) + sc->sample_to_chunk[stsc_index].id - 1 == sc->pseudo_stream_id) { av_add_index_entry(st, current_offset, current_dts, sample_size, distance, keyframe ? AVINDEX_KEYFRAME : 0); + dprintf(mov->fc, "AVIndex stream %d, sample %d, offset %"PRIx64", dts %"PRId64", " + "size %d, distance %d, keyframe %d\n", st->index, current_sample, + current_offset, current_dts, sample_size, distance, keyframe); + } current_offset += sample_size; assert(sc->stts_data[stts_index].duration % sc->time_rate == 0); current_dts += sc->stts_data[stts_index].duration / sc->time_rate; |