Commit 0ecf34ae authored by bcoudurier's avatar bcoudurier

warning is only valid for mov

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@11667 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 2761d1d0
......@@ -1464,7 +1464,7 @@ static int mov_write_header(AVFormatContext *s)
if(st->codec->codec_type == CODEC_TYPE_VIDEO){
track->timescale = st->codec->time_base.den;
av_set_pts_info(st, 64, 1, st->codec->time_base.den);
if (track->timescale > 100000)
if (track->mode == MODE_MOV && track->timescale > 100000)
av_log(NULL, AV_LOG_WARNING,
"WARNING codec timebase is very high. If duration is too long,\n"
"file may not be playable by quicktime. Specify a shorter timebase\n"
......
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