mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-30 15:00:29 +00:00
cosmetics, reindent
Originally committed as revision 13752 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
283c9a8ed4
commit
ce072b2d30
@ -1262,19 +1262,17 @@ 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
|
||||
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);
|
||||
mov_write_day_tag(pb, s->year, 0);
|
||||
mov_write_string_tag(pb, "\251enc", LIBAVFORMAT_IDENT, 0);
|
||||
mov_write_string_tag(pb, "\251des", s->comment , 0);
|
||||
mov_write_string_tag(pb, "\251gen", s->genre , 0);
|
||||
} 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);
|
||||
mov_write_day_tag(pb, s->year, 0);
|
||||
mov_write_string_tag(pb, "\251enc", LIBAVFORMAT_IDENT, 0);
|
||||
mov_write_string_tag(pb, "\251des", s->comment , 0);
|
||||
mov_write_string_tag(pb, "\251gen", s->genre , 0);
|
||||
} else {
|
||||
/* iTunes meta data */
|
||||
mov_write_meta_tag(pb, mov, s);
|
||||
}
|
||||
}
|
||||
return updateSize(pb, pos);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user