Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Conrad <lessen42@gmail.com>2010-04-17 14:37:42 +0400
committerDavid Conrad <lessen42@gmail.com>2010-04-17 14:37:42 +0400
commit33e623831be99de3847eafc793d5220fe6b12498 (patch)
tree6892633fded67e6291dabbfbf4c945547d30ab4b /libavcodec/vp3.c
parent8099d6c985ef561f8389daca621aeb367fee2f6d (diff)
vp3: Use avctx pointer directly
Originally committed as revision 22899 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vp3.c')
-rw-r--r--libavcodec/vp3.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/vp3.c b/libavcodec/vp3.c
index 2384524ebd..cc5b28fdbb 100644
--- a/libavcodec/vp3.c
+++ b/libavcodec/vp3.c
@@ -1986,8 +1986,8 @@ static int theora_decode_header(AVCodecContext *avctx, GetBitContext *gb)
fps.num = get_bits_long(gb, 32);
fps.den = get_bits_long(gb, 32);
if (fps.num && fps.den) {
- av_reduce(&s->avctx->time_base.num, &s->avctx->time_base.den,
- fps.den, fps.num, INT_MAX);
+ av_reduce(&avctx->time_base.num, &avctx->time_base.den,
+ fps.den, fps.num, 1<<30);
}
avctx->sample_aspect_ratio.num = get_bits_long(gb, 24);