dont write LAVF_ID if bitexact and any meta tag is set

Originally committed as revision 5404 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2006-05-18 23:03:16 +00:00
parent efda33957f
commit 6f276720ac
1 changed files with 2 additions and 1 deletions

View File

@ -1145,7 +1145,8 @@ static int mov_write_ilst_tag(ByteIOContext *pb, MOVContext* mov,
mov_write_string_tag(pb, "\251wrt", s->author , 1);
mov_write_string_tag(pb, "\251alb", s->album , 1);
mov_write_day_tag(pb, s->year ,1);
mov_write_string_tag(pb, "\251too", LIBAVFORMAT_IDENT, 1);
if(mov->tracks[0].enc && !(mov->tracks[0].enc->flags & CODEC_FLAG_BITEXACT))
mov_write_string_tag(pb, "\251too", LIBAVFORMAT_IDENT, 1);
mov_write_string_tag(pb, "\251cmt", s->comment , 1);
mov_write_string_tag(pb, "\251gen", s->genre , 1);
mov_write_trkn_tag(pb, mov, s);