summaryrefslogtreecommitdiff
path: root/libavformat/mov.c
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2006-04-19 12:53:47 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2006-04-19 12:53:47 +0000
commite0977c80452fccbb687e1ad069318cd5c2bbf8ef (patch)
tree15ca5c615b671e7db1be31254e42df7011b963c5 /libavformat/mov.c
parent5c72cad888aa60da92579ee983afa6fe0fded794 (diff)
indention
Originally committed as revision 5301 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r--libavformat/mov.c26
1 files changed, 13 insertions, 13 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index e5aa8f3064..dca2f3743e 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -1498,19 +1498,19 @@ static int mov_read_cmov(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
/* edit list atom */
static int mov_read_elst(MOVContext *c, ByteIOContext *pb, MOV_atom_t atom)
{
- int i, edit_count;
-
- get_byte(pb); /* version */
- get_byte(pb); get_byte(pb); get_byte(pb); /* flags */
- edit_count= c->streams[c->fc->nb_streams-1]->edit_count = get_be32(pb); /* entries */
-
- for(i=0; i<edit_count; i++){
- get_be32(pb); /* Track duration */
- get_be32(pb); /* Media time */
- get_be32(pb); /* Media rate */
- }
- dprintf("track[%i].edit_count = %i\n", c->fc->nb_streams-1, c->streams[c->fc->nb_streams-1]->edit_count);
- return 0;
+ int i, edit_count;
+
+ get_byte(pb); /* version */
+ get_byte(pb); get_byte(pb); get_byte(pb); /* flags */
+ edit_count= c->streams[c->fc->nb_streams-1]->edit_count = get_be32(pb); /* entries */
+
+ for(i=0; i<edit_count; i++){
+ get_be32(pb); /* Track duration */
+ get_be32(pb); /* Media time */
+ get_be32(pb); /* Media rate */
+ }
+ dprintf("track[%i].edit_count = %i\n", c->fc->nb_streams-1, c->streams[c->fc->nb_streams-1]->edit_count);
+ return 0;
}
static const MOVParseTableEntry mov_default_parse_table[] = {