summaryrefslogtreecommitdiff
path: root/libavformat/mov.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2008-01-26 20:07:57 +0000
committerMichael Niedermayer <michaelni@gmx.at>2008-01-26 20:07:57 +0000
commit41e19673ef73c9ee7907bc8bfaffbb69c54eb9c1 (patch)
treeaed08c9347b4b78f301e8cdc549974bcfb10157e /libavformat/mov.c
parentee6e2dbebffc220ac24a936c9777b067e2474066 (diff)
indent
Originally committed as revision 11623 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r--libavformat/mov.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index 3f919f1b9a..2b09c78a8e 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -1348,8 +1348,8 @@ static void mov_build_index(MOVContext *mov, AVStream *st)
"size %d, distance %d, keyframe %d\n", st->index, current_sample,
current_offset, current_dts, sample_size, distance, keyframe);
if(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);
+ av_add_index_entry(st, current_offset, current_dts, sample_size, distance,
+ keyframe ? AVINDEX_KEYFRAME : 0);
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;