mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-21 10:55:51 +02:00
movenc: indent cosemtics
Signed-off-by: Jean First <jeanfirst@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
4a4c4278b7
commit
0c10885c39
@ -1829,32 +1829,32 @@ static int mov_write_udta_tag(AVIOContext *pb, MOVMuxContext *mov,
|
||||
if(ret < 0)
|
||||
return ret;
|
||||
|
||||
if (mov->mode & MODE_3GP) {
|
||||
mov_write_3gp_udta_tag(pb_buf, s, "perf", "artist");
|
||||
mov_write_3gp_udta_tag(pb_buf, s, "titl", "title");
|
||||
mov_write_3gp_udta_tag(pb_buf, s, "auth", "author");
|
||||
mov_write_3gp_udta_tag(pb_buf, s, "gnre", "genre");
|
||||
mov_write_3gp_udta_tag(pb_buf, s, "dscp", "comment");
|
||||
mov_write_3gp_udta_tag(pb_buf, s, "albm", "album");
|
||||
mov_write_3gp_udta_tag(pb_buf, s, "cprt", "copyright");
|
||||
mov_write_3gp_udta_tag(pb_buf, s, "yrrc", "date");
|
||||
} 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_metadata(s, pb_buf, "\251ART", "artist" , 0);
|
||||
mov_write_string_metadata(s, pb_buf, "\251nam", "title" , 0);
|
||||
mov_write_string_metadata(s, pb_buf, "\251aut", "author" , 0);
|
||||
mov_write_string_metadata(s, pb_buf, "\251alb", "album" , 0);
|
||||
mov_write_string_metadata(s, pb_buf, "\251day", "date" , 0);
|
||||
mov_write_string_metadata(s, pb_buf, "\251swr", "encoder" , 0);
|
||||
mov_write_string_metadata(s, pb_buf, "\251des", "comment" , 0);
|
||||
mov_write_string_metadata(s, pb_buf, "\251gen", "genre" , 0);
|
||||
mov_write_string_metadata(s, pb_buf, "\251cpy", "copyright" , 0);
|
||||
} else {
|
||||
/* iTunes meta data */
|
||||
mov_write_meta_tag(pb_buf, mov, s);
|
||||
}
|
||||
if (mov->mode & MODE_3GP) {
|
||||
mov_write_3gp_udta_tag(pb_buf, s, "perf", "artist");
|
||||
mov_write_3gp_udta_tag(pb_buf, s, "titl", "title");
|
||||
mov_write_3gp_udta_tag(pb_buf, s, "auth", "author");
|
||||
mov_write_3gp_udta_tag(pb_buf, s, "gnre", "genre");
|
||||
mov_write_3gp_udta_tag(pb_buf, s, "dscp", "comment");
|
||||
mov_write_3gp_udta_tag(pb_buf, s, "albm", "album");
|
||||
mov_write_3gp_udta_tag(pb_buf, s, "cprt", "copyright");
|
||||
mov_write_3gp_udta_tag(pb_buf, s, "yrrc", "date");
|
||||
} 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_metadata(s, pb_buf, "\251ART", "artist" , 0);
|
||||
mov_write_string_metadata(s, pb_buf, "\251nam", "title" , 0);
|
||||
mov_write_string_metadata(s, pb_buf, "\251aut", "author" , 0);
|
||||
mov_write_string_metadata(s, pb_buf, "\251alb", "album" , 0);
|
||||
mov_write_string_metadata(s, pb_buf, "\251day", "date" , 0);
|
||||
mov_write_string_metadata(s, pb_buf, "\251swr", "encoder" , 0);
|
||||
mov_write_string_metadata(s, pb_buf, "\251des", "comment" , 0);
|
||||
mov_write_string_metadata(s, pb_buf, "\251gen", "genre" , 0);
|
||||
mov_write_string_metadata(s, pb_buf, "\251cpy", "copyright" , 0);
|
||||
} else {
|
||||
/* iTunes meta data */
|
||||
mov_write_meta_tag(pb_buf, mov, s);
|
||||
}
|
||||
|
||||
if (s->nb_chapters)
|
||||
mov_write_chpl_tag(pb_buf, s);
|
||||
if (s->nb_chapters)
|
||||
mov_write_chpl_tag(pb_buf, s);
|
||||
|
||||
if ((size = avio_close_dyn_buf(pb_buf, &buf)) > 0) {
|
||||
avio_wb32(pb, size+8);
|
||||
|
Loading…
Reference in New Issue
Block a user