Commit 9d6ed2f3 authored by michael's avatar michael

warn the user about the the mdhd problem

(this is of course not a good solution but its better than silently
generating invalid files, we should find a better solution)


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@9153 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 97435467
......@@ -845,6 +845,14 @@ static int mov_write_mdhd_tag(ByteIOContext *pb, MOVTrack* track)
(version == 1) ? put_be64(pb, track->trackDuration) : put_be32(pb, track->trackDuration); /* duration */
put_be16(pb, track->language); /* language */
put_be16(pb, 0); /* reserved (quality) */
if(version!=0 && track->mode == MODE_MOV){
av_log(NULL, AV_LOG_ERROR,
"FATAL error, file duration too long for timebase, this file will not be\n"
"playable with quicktime. Choose a differnt timebase or a different\n"
"container format\n");
}
return 32;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment