From 1bd26e51f350b20d417eec57e8185c3ad83589c6 Mon Sep 17 00:00:00 2001 From: Baptiste Coudurier Date: Sun, 29 Nov 2009 18:26:51 +0000 Subject: [PATCH] 100l, max value for timescale is UINT16_MAX Originally committed as revision 20661 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/movenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/movenc.c b/libavformat/movenc.c index 2ed2c9bf15..fe26cf01c0 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -1852,7 +1852,7 @@ static int mov_write_header(AVFormatContext *s) track->sampleSize = (av_get_bits_per_sample(st->codec->codec_id) >> 3) * st->codec->channels; } if (track->mode != MODE_MOV) { - if (track->timescale > INT16_MAX) { + if (track->timescale > UINT16_MAX) { av_log(s, AV_LOG_ERROR, "track %d: output format does not support " "sample rate %dhz\n", i, track->timescale); goto error;