|
|
|
@ -1236,30 +1236,30 @@ static int mov_write_udta_tag(ByteIOContext *pb, MOVContext* mov, |
|
|
|
|
s->comment[0] || s->genre[0] || s->track || |
|
|
|
|
(mov->mode == MODE_MOV && |
|
|
|
|
((mov->tracks[0].enc && !mov->tracks[0].enc->flags & CODEC_FLAG_BITEXACT) || req))) { |
|
|
|
|
offset_t pos = url_ftell(pb); |
|
|
|
|
offset_t pos = url_ftell(pb); |
|
|
|
|
|
|
|
|
|
put_be32(pb, 0); /* size */ |
|
|
|
|
put_tag(pb, "udta"); |
|
|
|
|
put_be32(pb, 0); /* size */ |
|
|
|
|
put_tag(pb, "udta"); |
|
|
|
|
|
|
|
|
|
/* iTunes meta data */ |
|
|
|
|
mov_write_meta_tag(pb, mov, s); |
|
|
|
|
/* iTunes meta data */ |
|
|
|
|
mov_write_meta_tag(pb, mov, s); |
|
|
|
|
|
|
|
|
|
if(mov->mode == MODE_MOV){ // the title field breaks gtkpod with mp4 and my suspicion is that stuff is not valid in mp4
|
|
|
|
|
/* Requirements */ |
|
|
|
|
if (req) |
|
|
|
|
if(mov->mode == MODE_MOV){ // the title field breaks gtkpod with mp4 and my suspicion is that stuff is not valid in mp4
|
|
|
|
|
/* Requirements */ |
|
|
|
|
if (req) |
|
|
|
|
mov_write_string_tag(pb, "\251req", "QuickTime 6.0 or greater", 0); |
|
|
|
|
|
|
|
|
|
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); |
|
|
|
|
if(mov->tracks[0].enc && !(mov->tracks[0].enc->flags & CODEC_FLAG_BITEXACT)) |
|
|
|
|
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); |
|
|
|
|
} |
|
|
|
|
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); |
|
|
|
|
if(mov->tracks[0].enc && !(mov->tracks[0].enc->flags & CODEC_FLAG_BITEXACT)) |
|
|
|
|
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); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return updateSize(pb, pos); |
|
|
|
|
return updateSize(pb, pos); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return 0; |
|
|
|
|