cosmetics, reindent

Originally committed as revision 13752 to svn://svn.ffmpeg.org/ffmpeg/trunk
pull/126/head
Baptiste Coudurier 17 years ago
parent 283c9a8ed4
commit ce072b2d30
  1. 4
      libavformat/movenc.c

@ -1262,8 +1262,7 @@ static int mov_write_udta_tag(ByteIOContext *pb, MOVContext *mov,
mov_write_3gp_udta_tag(pb, s, "dscp", s->comment);
mov_write_3gp_udta_tag(pb, s, "albm", s->album);
mov_write_3gp_udta_tag(pb, s, "yrrc", "nil");
} else {
if(mov->mode == MODE_MOV){ // the title field breaks gtkpod with mp4 and my suspicion is that stuff is not valid in mp4
} else if (mov->mode == MODE_MOV) { // the title field breaks gtkpod with mp4 and my suspicion is that stuff is not valid in mp4
mov_write_string_tag(pb, "\251nam", s->title , 0);
mov_write_string_tag(pb, "\251aut", s->author , 0);
mov_write_string_tag(pb, "\251alb", s->album , 0);
@ -1275,7 +1274,6 @@ static int mov_write_udta_tag(ByteIOContext *pb, MOVContext *mov,
/* iTunes meta data */
mov_write_meta_tag(pb, mov, s);
}
}
return updateSize(pb, pos);
}

Loading…
Cancel
Save